Hello,
I've got tomcat running with apache using mod_proxy_ajp. Apache is
serving out all static files and taking care of ssl. When I go to a
secure page under tomcat (https) I always get a warning that the page
contains unauthenticated content. The following is an exerpt from my
server.xml file:
<Connector address="139.142.185.230"
port="8009"
enableLookups="false"
protocol="AJP/1.3"
minSpareThreads="20"
maxSpareThreads="100"
maxThreads="200"
connectionTimeout="600000"
/>
my proxy_ajp.conf file is:
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
ProxyPass */order ajp://139.142.185.230:8009/order/*
ProxyPass */cc ajp://139.142.185.230:8009/cc/*
ProxyPass */dwr ajp://139.142.185.230:8009/dwr/*
I am able to correctly (meaning proper pad locked secure site) get to
https pages that are not being forwarded to tomcat.
How do I get all content from tomcat to be authenticated?
Thanks.