1
vote
1answer
307 views
ProxyPass, ProxyReverse vs AJP
I currently have a Tomcat + apache http server setting to serve my Java servlet:
ProxyPass /myservice http://localhost:8080/myservice
ProxyPassRerverse /myservice http://localhost:8080/myservice
this …
1
vote
3answers
639 views
Using ProxyPass for pages but not images
As a result of horrible, horrible errors, we've changed how we connect Apache to Tomcat. We were using mod_jk:
JkMount /path ajp13
Now we're using mod_proxy_ajp:
ProxyPass /path …
