I have a CentOS
running Apache Tomcat
, I would like to replace mod_proxy
by mod_jk
,
I can see with httpd -l
that these modules are loaded:
mod_proxy_connect.c
mod_proxy_ftp.c
mod_proxy_http.c
mod_proxy_scgi.c
mod_proxy_ajp.c
mod_proxy_balancer.c
How do I disable mod_proxy
from Apache Tomcat?
Thanks!
You should be able to disable mod_proxy by not loading it in /etc/httpd/conf/httpd.conf
Comment out the following lines in /etc/httpd/conf/httpd.conf
and so on, for each module you want disabled.
and check the module is not being loaded elsewhere in /etc/httpd/conf.d/*