ProxyPass / http://mindmap.mydomain.com:9080/wisemapping/
ProxyPassReverse / http://mindmap.mydomain.com:9080/wisemapping/
With this setting it works but after login the url is always rewrited to http://mindmap.mydomain.com:9080/wisemapping/
So I changed the baseUrl in the app.properties in this way:
site.baseurl = http://mindmap.mydomain.com/
After that I can see the welcome page but it doesn't work any more. I cannot make neither login nor forget password. I receive a 404 error from tomcat saying: /wisemapping/wisemapping/...
It seems that /wisemapping/wisemapping/ is appending to each url.
How can I solve it?