How can I diagnose cache misses when using Apache as a reverse proxy?
- by johnstok
I have set up Apache 2.2 as a reverse proxy with the following configuration:
# jBoss proxying
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /foo http://localhost:9080/foo
ProxyPassReverse /foo http://localhost:9080/foo
ProxyPassReverseCookiePath /foo…