I did not get the mail, but i've got it working with more than 1:
(part of) httpd.conf
--------------------------------------
<VirtualHost my.real.host>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/webmaster/www/v1/webapps
ServerName my.first.virtualhost
Port 80
<LocationMatch "/WEB-INF/">
AllowOverride None
deny from all
</LocationMatch>
<LocationMatch "/META_INF/">
AllowOverride None
deny from all
</LocationMatch>
ErrorLog logs/my.first.virtualhost_error
TransferLog logs/my.first.virtualhost_log
JkMount /*/servlet/ v1
JkMount /servlet/* v1
JkMount /*.jsp v1
</VirtualHost>
<VirtualHost my.real.host>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/webmaster/www/v1/webapps
ServerName my.second.virtualhost
Port 80
<LocationMatch "/WEB-INF/">
AllowOverride None
deny from all
</LocationMatch>
<LocationMatch "/META_INF/">
AllowOverride None
deny from all
</LocationMatch>
ErrorLog logs/my.second.virtualhost_error
TransferLog logs/my.second.virtualhost_log
JkMount /*/servlet/ v2
JkMount /servlet/* v2
JkMount /*.jsp v2
</VirtualHost>
----------------------------------------------
server.xml
---------------------------------------------
<Server port="8010" shutdown="SHUTDOWN" debug="999">
<Service name="Tomcat-Apache-my.first.virtualhost" debug="999">
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector" port="8011" minProcessors="2" maxProcessors="75" acceptCount="10" debug="0"/>
<Engine name="v1" debug="999" defaultHost="my.first.virtualhost">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="my.first.virtualhost_log_" suffix=".txt" timestamp="true" debug="999"/>
<Realm className="org.apache.catalina.realm.MemoryRealm" debug="999"/>
<Host name="my.first.virtualhost" debug="999" appBase="webapps/v1" unpackWARs="false" autoDeploy="true" liveDeploy="true" reloadable="true">
<Context path="" docBase="ROOT" debug="999" reloadable="true"/>
</Host>
</Engine>
</Service>
<Service name="Tomcat-Apache-my.second.virtualhost" debug="999">
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector" port="8011" minProcessors="2" maxProcessors="75" acceptCount="10" debug="0"/>
<Engine name="v1" debug="999" defaultHost="my.second.virtualhost">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="my.second.virtualhost_log_" suffix=".txt" timestamp="true" debug="999"/>
<Realm className="org.apache.catalina.realm.MemoryRealm" debug="999"/>
<Host name="my.second.virtualhost" debug="999" appBase="webapps/v1" unpackWARs="false" autoDeploy="true" liveDeploy="true" reloadable="true">
<Context path="" docBase="ROOT" debug="999" reloadable="true"/>
</Host>
</Engine>
</Service>
</Server>
------------------------------------
workers.properties
-----------------------------------
worker.list=v1,v2
worker.v1.port=8011
worker.v2.port=8012
worker.v1.host=localhost worker.v1.host=localhost
worker.v1.type=ajp13 worker.v1.type=ajp13
#standard load balancing worker.v1.lbfactor=1 worker.v1.lbfactor=1 worker.loadbalancer.type=lb worker.loadbalancer.balanced_workers=v1
hope that this is useful, Fred
"There are 10 types of people when it comes to binary, those that understand it.. and those who don't."
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
