RE: Problems with /redmine URL ยป redmine.conf
| 1 |
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-3.0.7/ext/apache2/mod_passenger.so |
|---|---|
| 2 |
PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-3.0.7 |
| 3 |
PassengerRuby /usr/bin/ruby |
| 4 |
|
| 5 |
<VirtualHost *:8000> |
| 6 |
ServerName redmine |
| 7 |
DocumentRoot /var/www/redmine/public |
| 8 |
RailsEnv production |
| 9 |
RailsBaseURI /redmine |
| 10 |
# PassengerDefaultUser apache
|
| 11 |
<Directory /var/www/redmine/public> |
| 12 |
AllowOverride all |
| 13 |
Options -MultiViews |
| 14 |
</Directory>
|
| 15 |
</VirtualHost>
|
| 16 |
|
| 17 |
ProxyPass /redmine http://localhost:8000 |
| 18 |
ProxyPassReverse /redmine http://localhost:8000 |
| 19 |
|