Install redmine fails :-(
Added by max max over 9 years ago
Hi,
I installed Redmine 3.1.0 on Debian Jessie (Debian 8)
I test the installation with Webrick : OK
when i setup apache2, i get many errors, and Since 2 days, afer differents tutos, I can't fix the problem.
When I access http://myIP/redmine, i get:
When I access http://myIP, I get:
I think I miss a config in apache2, but I don't know where.
Thank you for your help.
redmine1.png (24.7 KB) redmine1.png | |||
redmine2.png (166 KB) redmine2.png |
Replies (1)
RE: Install redmine fails :-( - Added by Minh Vo about 9 years ago
It will be virtual host problem. Here is my example :
<VirtualHost *:8080>
ServerName example.demo.com
DocumentRoot /var/www/redmine/public/
ErrorLog logs/redmine_error_log
<Directory "/var/www/redmine/public/">
Options Indexes ExecCGI FollowSymLinks
</Directory>
</VirtualHost>