Return-Path: Delivered-To: apmail-jakarta-tomcat-user-archive@jakarta.apache.org Received: (qmail 23573 invoked by uid 500); 19 Sep 2001 16:59:33 -0000 Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: tomcat-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 23549 invoked from network); 19 Sep 2001 16:59:32 -0000 Message-ID: From: David Oxley To: "'tomcat-user@jakarta.apache.org'" Subject: RE: IIS Virtual hosting Date: Wed, 19 Sep 2001 17:33:39 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N It's in CVS. Or wait until RC1 gets built (Don't know when that is happening though). Dave Dave@Staffplanner.co.uk -----Original Message----- From: Kar YEOW [mailto:kar.yeow@apir.com.au] Sent: 19 September 2001 04:27 To: tomcat-user@jakarta.apache.org Subject: Re: IIS Virtual hosting where can I get a copy of the patched isapi_redirect.dll? TIA. kar ----- Original Message ----- From: "Larry Isaacs" To: Sent: Thursday, September 13, 2001 3:42 AM Subject: RE: IIS Virtual hosting Hi David, Multiple virtual hosts on IIS is something I have not found time to try to do, yet. However, it is something I hope to support in Tomcat 3.3. Tim Whittington has submitted a patch to the isapi_redirect.dll that should be included soon. It adds a feature where the "isapi_redirect" dll queries its actual file name and uses that name to read a ".properties" file from the same directory. If that file exists, those properties are used. If not, it reverts to the old behavior of getting the "properties" file location from the registry. This "properties" file would specify where to get the "uriworkermap" file. This implies that you get multiple isapi_redirector instances, each using different settings, by having multiple copies of the "isapi_redirector" with different names. Each virtual host would use the appropriately named copy. Not elegant, but I'm not sure there is a better way. Cheers, Larry > -----Original Message----- > From: David Oxley [mailto:dave@staffplanner.co.uk] > Sent: Wednesday, September 12, 2001 9:40 AM > To: tomcat-user@jakarta.apache.org > Subject: 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 > > > ServerName cisweb2k > JkMount /spweb/servlet/* ajp13_1 > > > > ServerName cisweb2k2 > JkMount /spweb/servlet/* ajp13_2 > > > 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. >