Using Confluence with virtual hosts and mod_proxy
- by Marcus
Hi @all,
on a test server I have installed the latest version of Confluence. I configured a apache with ajp.
But I have a problem, when I login in Confluence, I get the following error message:
Not Found
The requested URL / / homepage.action was not found on this server.
The problem seems to be known, I found following Link:
http://confluence.atlassian.com/display/DOC/Using+Apache+with+virtual+hosts+and+mod_proxy
But unfortunately the forwards have not helped, I still get the error messages. Does anyone have any idea how I could solve the problem?
The following Apache configuration I have set up:
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
LoadModule proxy_ajp_module /usr/lib/apache2/modules/mod_proxy_ajp.so
<IfModule proxy_http_module>
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location />
Order allow,deny
Allow from all
</Location>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</IfModule>