Added by Marco Caldirola about 6 years ago
Hi all,
I'm running official Openproject docker container and everything works properly. Now i want to reach Openproject with the suburl /openproject (eg.: pippo.com/openproject). I read many thread in this forum but i can't reach my goal.
My configuration steps are:
1) configuration.yml --> rails_relative_url_root: "/openproject"
2) openproject.cong (apache configuration):
Alias /openproject /usr/src/app/public
<Location /openproject>
ProxyPass http://127.0.0.1:8080/ retry=0
ProxyPassReverse http://127.0.0.1:8080/
</Location>
3) bundle exec rake assets:precompile
4) /etc/init.d/apache2 restart
In this way i can navigate to pippo.com/openproject but the urls inside the pages are wrong, eg: http://pippo.com/projects/new instead http://pippo.com/openproject/projects/new, http://pippo/login instead http://pippo/openproject/login.
Any Ideas?
Thanks!