Author: mturk Date: Mon Mar 19 17:50:27 2012 New Revision: 1302568 URL: http://svn.apache.org/viewvc?rev=1302568&view=rev Log: Make sample interchangeable
Modified: tomcat/jk/trunk/conf/uriworkermap.properties tomcat/jk/trunk/conf/workers.properties.minimal Modified: tomcat/jk/trunk/conf/uriworkermap.properties URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/conf/uriworkermap.properties?rev=1302568&r1=1302567&r2=1302568&view=diff ============================================================================== --- tomcat/jk/trunk/conf/uriworkermap.properties (original) +++ tomcat/jk/trunk/conf/uriworkermap.properties Mon Mar 19 17:50:27 2012 @@ -20,20 +20,20 @@ # The general syntax for this file is: # [URL]=[Worker name] -/admin/*=wlb -/manager/*=wlb -/jsp-examples/*=wlb -/servlets-examples/*=wlb -/examples/*=wlb +/admin/*=lb +/manager/*=lb +/jsp-examples/*=lb +/servlets-examples/*=lb +/examples/*=lb # Optionally filter out all .jpeg files inside that context # For no mapping the url has to start with exclamation (!) -!/servlets-examples/*.jpeg=wlb +!/servlets-examples/*.jpeg=lb # # Mount jkstatus to /jkmanager # For production servers you will need to # secure the access to the /jkmanager url # -/jkmanager=jkstatus +/jk-manager=jk-status Modified: tomcat/jk/trunk/conf/workers.properties.minimal URL: http://svn.apache.org/viewvc/tomcat/jk/trunk/conf/workers.properties.minimal?rev=1302568&r1=1302567&r2=1302568&view=diff ============================================================================== --- tomcat/jk/trunk/conf/workers.properties.minimal (original) +++ tomcat/jk/trunk/conf/workers.properties.minimal Mon Mar 19 17:50:27 2012 @@ -21,25 +21,25 @@ # The workers that jk should create and work with # -worker.list=wlb,jkstatus +worker.list=lb,jk-status # -# Defining a worker named ajp13w and of type ajp13 +# Defining a worker named node1 and of type ajp13 # Note that the name and the type do not have to match. # -worker.ajp13w.type=ajp13 -worker.ajp13w.host=localhost -worker.ajp13w.port=8009 +worker.node1.type=ajp13 +worker.node1.host=localhost +worker.node1.port=8009 # # Defining a load balancer # -worker.wlb.type=lb -worker.wlb.balance_workers=ajp13w +worker.lb.type=lb +worker.lb.balance_workers=node1 # # Define status worker # -worker.jkstatus.type=status +worker.jk-status.type=status --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org