Redmine url
Added by Holger Seitter over 10 years ago
Hello,
I installed Redmine like descriped there: http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_on_Debian_8_with_Apache2-Passenger
It works and I reach my Redmine with the url http://redmine.mydomain.tld/redmine
I want to reach Redmine but with the url http://redmine.mydomain.tld
What changes I have to make? I tried to edit the vhost conf and set <Location /redmine> to <Location /> but then Redmine no longer works :-)
cheerz
Holger
Replies (1)
RE: Redmine url
-
Added by Robert Schneider over 10 years ago
My vhost config looks like that:
<VirtualHost *:80>
ServerName redmine.domain.com
DocumentRoot /var/www/html/redmine/public
<Directory "/var/www/html/redmine/public">
# This relaxes Apache security settings.
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews
</Directory>
</VirtualHost>
HTH