Integration of Apache Webserver and Tomcat

httpd.conf

include conf/mod_jk.conf

mod_jk.conf

LoadModule      jk_module               modules/mod_jk.so
JkWorkersFile   conf/workers.properties
JkLogFile       logs/mod_jk.log
JkLogLevel      info
JkMount         /examples/*             worker1

workers.properties

worker.list=worker1
worker.worker1.host=192.168.184.130
worker.worker1.port=8009
worker.worker1.type=ajp13
worker.worker1.lbfactor=1

你可能感兴趣的:(Integration of Apache Webserver and Tomcat)