Can't get redmine working w/ apache on Windows
Added by Xavier Berdugo over 9 years ago
Hi all
I went through number of articles but I didn't find the solution to get "locahost/redmine" working.
For info, passenger isn't supported on windows :-(
My actual result is that the home displays ok (CSS & IMG) but the links are broken.
The link doesn't contains the "/redmine" part.
localhost:3000 works but not the CSS & IMG
localhost:3000/redmine displays a 404
What I've done :
Add the following line in environnement.db
Redmine::Utils::relative_url_root = "/redmine"
--> This is what makes the CSS & IMG working
Adding the following code in httpd.conf
<Proxy *> Order deny,allow Allow from all </Proxy> ProxyRequests Off ProxyPass /redmine/ http://127.0.0.1:3000/
Thanks for your help
Replies (1)
RE: Can't get redmine working w/ apache on Windows - Added by Leonel Iturralde over 9 years ago
Hi,
You can try bitnami redmine for windows. It configures redmine to run using apache reverse just like you described.
Another question:
Can you access redmine using http://127.0.0.1:3000/
or http://127.0.0.1:3000/redmine
?