Ok, here is my solution. I found that tomcat needs to be configured to trust / accept the authentication that apache2 performed ...
To do this, you need to edit the server.xml tomcat file (should be in / etc / tomcat 6 / server.xml or similar) and add tomcatAuthentication="false" in your <Connector> -Tag to connect AJP. My Connector tag is as follows:
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" tomcatAuthentication="false" />
Now you just need to restart tomcat ... is done.
Hope this helps !; -)
Stephen
Explanation:
"tomcatAuthentication" - "If set to True, authentication will be performed in Tomcat, otherwise the authenticated director will be distributed from its own web server and used for authorization in Tomcat. The default value is" true ".
Quote from: http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html
source share