Рабочий /etc/apache2/sites-enabled/redmine.conf
<IfModule mod_passenger.c>
PassengerDefaultUser www-data
</IfModule>
<VirtualHost *:80>
ServerAdmin redmine-admin@example.org
ServerName redmine.example.org
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options +FollowSymLinks -Indexes -MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# ln -s /usr/share/redmine/public /var/www/redmine
<Directory /var/www/redmine>
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
LogLevel notice
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>