Project

General

Profile

apache and ubuntu 14.04: "Index of redmine/"

Added by Wooma Magic almost 10 years ago

Hi I have a problem with my redmine installation. I installed it with

sudo apt-get install redmine-mysql libapache2-mod-passenger

My config files are:

/etc/apache2/sites-available/001-redmine.conf
@ <Directory /var/www/html/redmine>
Options FollowSymLinks
AllowOverride None
Require all granted
RailsEnv production
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
RewriteEngine On
RewriteRule $ index.html [QSA]
RewriteRule ^([
.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} dispatch.fcgi$
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]

</Directory> @

/etc/apache2/mods-available/passenger.conf:
<IfModule mod_passenger.c>
PassengerDefaultUser www-data
PassengerRoot /usr
PassengerRuby /usr/bin/ruby
</IfModule>

/etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Does anybody has a hint how I can progress with my installation?

Thanks,

pioupus