F29Installation » History » Revision 3
Revision 2 (Gerd Pokorra, 2018-12-20 09:36) → Revision 3/41 (Gerd Pokorra, 2018-12-20 10:00)
h1. HowTo Install Redmine 4.0.0 on Fedora 29
{{toc}}
This guide is not complete. It will be completed in the next two weeks.
h2. System Requirements
It is assumed that the Server Edition is installed on the system in this guide.
h2. Web Server
h3. NginxPassenger
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@:
* passenger-6.0.0
* nginx-1.14.2
Downloading the sources:
<pre>Passenger
> cd /opt
> wget https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.0.tar.gz
> tar xf passenger-6.0.0.tar.gz
Nginx
> wget http://nginx.org/download/nginx-1.14.2.tar.gz
> mkdir /opt/src
> cd /opt/src
> tar xf nginx-1.14.2.tar.gz
</pre>
h4. Installing additional packages
For the build of @passenger@ and @nginx@ the following additional packages are needed to be installed:
<pre>> dnf install install gcc-c++ libcurl-devel openssl-devel zlib-devel
</pre>
h3. Apache