Project

General

Profile

Redmine, Apache & Windows

Added by arketeam developpement almost 13 years ago

Hi,

I try to install three environments of Redmine with Apache on Windows :
  • prod
  • dev
  • fonc

I've put these lines for my virtual host in the httpd.conf:
<Location /production>
ProxyPass http://redmine.mondomaine.com:3000
ProxyPassReverse http://redmine.mondomaine.com:3000/
</Location>
<Location /dev>
ProxyPass http://redmine.mondomaine.com:3001
ProxyPassReverse http://redmine.mondomaine.com:3001/
</Location>
<Location /fonc>
ProxyPass http://redmine.mondomaine.com:3002
ProxyPassReverse http://redmine.mondomaine.com:3002/
</Location>

I've put this line in environment.rb :
Redmine::Utils::relative_url_root = "/prod"

The prod environment works fine, put not the others.

How can I do to make these others environments work ?

Thanks.