日期:2014-05-17 浏览次数:20942 次
worker.list=ajp13 worker.ajp13.type=ajp13 #worker.ajp13.host=172.16.66.89 #worker.ajp13.host=127.0.0.1 worker.ajp13.port=8009 #tomcat ajp1.3对应的端口号 worker.ajp13.lbfactor=50 worker.ajp13.cachesize=10 worker.ajp13.cache_timeout=600 worker.ajp13.socket_keepalive=1 worker.ajp13.socket_timeout=300
#Where to find workers.properties #JkWorkersFile "D:/Program Files/Apache Software Foundation/Apache2.2/conf/workers.properties" #Where to put jk logs 日志路径 JklogFile "D:/Program Files/Apache Software Foundation/Apache2.2/logs/mod_jk.log" #Set the jk log level[debug/error/info] 日志级别 JkLogLevel debug #Select the log format 日期格式 JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " #JkOptions indicate to send SSL KEY SIZE, JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories #JkRequestLogFormat set the request format JkRequestLogFormat "%w %V %T" #Send servlet for context /examples to worker named ajp13 #JkMount /servlet/* ajp13 #Send JSPs for context /examples to worker named ajp13 #JkMount /routonlifeSystemAdmin/* worker1 #JkMount /routonlifeClient/* worker1 #JkMount /notice/*.* ajp13 #JkMount /routon/*.do ajp13 #JkMount /routon/*.action ajp13 JkMount /routon/*.* ajp13 #ajp13这个名称跟workers.properties中worker.list=ajp13要对应,表示, /routon/下所有的请求都经过ajp13协议找到对应的tomcat,由tomcat处理。