Project

General

Profile

F29Installation » History » Version 2

Gerd Pokorra, 2018-12-20 09:36

1 1 Gerd Pokorra
h1. HowTo Install Redmine 4.0.0 on Fedora 29
2
3
{{toc}}
4
5
This guide is not complete. It will be completed in the next two weeks.
6
7
h2.  System Requirements
8
9
It is assumed that the Server Edition is installed on the system in this guide.
10
11
h2. Web Server
12
13 2 Gerd Pokorra
h3. NginxPassenger
14
15
The Fedora @nginx@ package do not include Passenger, so you have to build @nginx@ with the passenger module. The guide assume that the sources are extracted under the directory @/opt@ . The @nginx@ software will be installed at @/opt/ngnix@. At the time of writting that guide this was the current stable releases of @passenger@ and @nginx@:
16
17
* passenger-6.0.0
18
* nginx-1.14.2
19
20
Downloading the sources:
21
22
<pre>Passenger
23
24
> cd /opt
25
> wget https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.0.tar.gz
26
> tar xf passenger-6.0.0.tar.gz
27
28
Nginx
29
30
> wget http://nginx.org/download/nginx-1.14.2.tar.gz
31
> mkdir /opt/src
32
> cd /opt/src
33
> tar xf nginx-1.14.2.tar.gz
34
</pre>
35 1 Gerd Pokorra
36
h3. Apache