mod_jk.conf
----------------------------------------------------------------
LoadModule jk_module modules/mod_jk.so
JkWorkersFile D:/DEVTOOLS/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
JkRequestLogFormat "%w %V %T"
HostnameLookups Off
--------------------------------------------------------------------
http_vhost.conf
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName ajp.exshop.com
DocumentRoot "D:/ftphome/ajp"
<Directory "D:/ftphome/ajp">
DirectoryIndex index.html index.php
Order allow,deny
Allow from all
</Directory>
JkMount /*.jsp loadbalancer
JkMount /shopxx/*.action loadbalancer
HostnameLookups Off
ErrorLog "logs/ajp-test-error.log"
CustomLog "logs/ajp-test-access.log" common
</VirtualHost>