I've returned to this thread because I've run into more problems. My configuration is such that ALL web requests are being routed to tomcat. For example,
http://www.courtscan.com is supposed to get jsp docs from /www/tomcat/webapps/courtscan ... which it does. However,
http://www.buffalotouch.com is supposed to get html docs from /www/buffalotouch, which it does not. Instead, I get a the default tomcat local home page. I'm sure I have to change something with the server.xml context/document/appBase paths, or perhaps the mount directive in workers.properties, but I'm clueless as to where to start.
Bbelow are the relevant sections of my current httpd.conf, workers.properties and server.xml files:
##### httpd.conf
LoadModule jk_module lib/mod_jk.so
JkWorkersFile conf/workers.properties
JkShmFile /var/log/httpd/mod_jk.shm
JkLogFile logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
##########Virtual hosts section of httpd.conf############
<VirtualHost *>
ServerName
www.fluxrunner.com
DocumentRoot /usr/local/apache/htdocs
</VirtualHost>
<VirtualHost *>
ServerName
www.courtscan.com
DocumentRoot /www/courtscan
<directory /www/courtscan>
allow from all
</directory>
CustomLog /www/courtscan/logs/access_log combined
ErrorLog /www/courtscan/logs/error_log
</VirtualHost>
<VirtualHost *>
ServerName
www.buffalotouch.com
DocumentRoot /www/buffaloTouch
<directory /www/buffaloTouch>
allow from all
</directory>
CustomLog /www/buffaloTouch/logs/access_log combined
ErrorLog /www/buffaloTouch/logs/error_log
</VirtualHost>
#######workers.properties file################
worker.list=courtscan
worker.courtscan.type=ajp13
worker.courtscan.host=localhost
worker.courtscan.port=8009
worker.courtscan.mount=/ /*
####Host tags in server.xml file##########
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
</Host>
<Host name="www.courtscan.com" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
<Alias>courtscan.com</Alias>
<Logger className="org.apache.catalina.logger.FileLogger" directory="logs/" prefix="courtscan_access_log" suffix=".log" timestamp="true"/>
<Context path="" docBase="courtscan" reloadable="false">
<WatchedResource>/WEB-INF/web.xml</WatchedResource>
</Context>
</Host>