I have my web application sitting behind a proxy, so that we can hide the URL/port etc from the users. Now I can access http://ip.address.here/app-name/ but I want http://ip.address.here/ to point to the same application (so we can hide app-name as well). In my httpd.conf, I added the following lines: Code: ProxyPass / http://server.ip.address/app-name ProxyPassReverse / http://server.ip.address/app-name When I try to access http://ip.address/ now I can get my log in page. But any action will throw this error: Code: The call failed on the server; see server log for details Does anyone know why this may be?