You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by David Oxley <da...@staffplanner.co.uk> on 2001/09/12 15:39:39 UTC

IIS Virtual hosting

Hi all,

I need to set up IIS with each virtual host routing to a different worker in
Tomcat. Each virtual host has the same web application under it and
therefore must all be the same context.

i.e. Under Apache I set up the following:
NameVirtualHost 128.100.2.23

<VirtualHost 128.100.2.23>
ServerName cisweb2k
JkMount /spweb/servlet/* ajp13_1
</VirtualHost>

<VirtualHost 128.100.2.23>
ServerName cisweb2k2
JkMount /spweb/servlet/* ajp13_2
</VirtualHost>

How is the best way to achieve the same configuration with IIS?
I think what I need is to be able to specify the host name in
uriworkermap.properties:
cisweb2k/spweb/servlet/*=ajp13_1
cisweb2k2/spweb/servlet/*=ajp13_2

Thanks.
Dave.