larryi 02/03/19 19:24:00 Modified: src/etc/jk uriworkermap.properties Log: Bring this example file up to date. Revision Changes Path 1.2 +27 -8 jakarta-tomcat/src/etc/jk/uriworkermap.properties Index: uriworkermap.properties =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/etc/jk/uriworkermap.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- uriworkermap.properties 9 Sep 2000 23:21:20 -0000 1.1 +++ uriworkermap.properties 20 Mar 2002 03:24:00 -0000 1.2 @@ -1,14 +1,33 @@ # -# Simple worker configuration file +# Simple uriworkermap configuration file # -# Mount the servlet context to the ajp12 worker -/servlet/*=ajp12 - -# Mount the examples context to the ajp12 worker -/examples/*=ajp12 +# Mount the examples context to the ajp13 worker. +# Forwards all requests for this context to Tomcat. +/examples=ajp13 +/examples/*=ajp13 # Advanced mount of the examples context -# /examples/*.jsp=ajp12 -# /examples/servlet/*=ajp12 +# Forwards only JSP page and servlet requests for +# this context to Tomcat. +# Requires additional manual configuration of IIS to +# successfully serve static content in this context. +# +# Note: ApacheConfig will do a much more complete +# job of generating this kind of configuration +# if "forwardAll" is set false. +# +# /examples/*.jsp=ajp13 +# /examples/servlet/*=ajp13 + +# Really advanced mount of the "root" context. +# Forwards only JSP page and servlet requests for +# this context to Tomcat. +# To work properly, "merging" of IIS's default virtual +# directory and Tomcat's "ROOT" web application is +# required. +# +#/*.jsp ajp13 +#/servlet/*=ajp13 +
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>