You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by na...@apache.org on 2001/06/17 21:04:03 UTC

cvs commit: jakarta-tomcat/src/etc server.xml

nacho       01/06/17 12:04:03

  Modified:    src/etc  server.xml
  Log:
  * in Win32 adding address attr to Ajp12 makes Tomcat non stop correctly , searching for a solution.
  * Changing Ajp13 to not use address too, it's not needed here.
  
  Revision  Changes    Path
  1.78      +7 -3      jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- server.xml	2001/06/09 03:18:17	1.77
  +++ server.xml	2001/06/17 19:04:03	1.78
  @@ -36,7 +36,10 @@
           <SessionIdGenerator randomClass="java.security.SecureRandom" 
                               randomFile="/dev/urandom" />
   
  +<!--        <RequestInterceptor className="org.apache.tomcat.modules.monitor.Monitor"/>
  +-->
   
  +
           <!-- ========== context processing modules ========== -->
   
           <!-- This will be the "default" profile 
  @@ -53,7 +56,7 @@
   		   path="logs/jasper-${yyyyMMdd}.log" 
   		   verbosityLevel = "INFORMATION"  />
   
  -        <LoaderInterceptor11  useApplicationLoader="true" />
  +        <LoaderInterceptor11  useApplicationLoader="true" debug="99" />
   
           <WebXmlReader validate="true" />
   
  @@ -197,19 +200,20 @@
           <!-- Apache AJP12 support. This is also used to shut down tomcat.
                Parameter "address" defines network interface this Interceptor
                "binds" to. Delete it if you want to "bind" to all interfaces.
  +        address="127.0.0.1"
             -->
           <RequestInterceptor 
            className="org.apache.tomcat.modules.server.Ajp12Interceptor"
  -         address="127.0.0.1"
  +         tomcatAuthentication="false" 
            port="8007" />
   
           <!-- Apache AJP13 support (mod_jk)
                Parameter "address" defines network interface this Interceptor
                "binds" to. Delete it if you want to "bind" to all interfaces.
  +         address="127.0.0.1"
             -->
           <RequestInterceptor 
            className="org.apache.ajp.tomcat33.Ajp13Interceptor"
  -         address="127.0.0.1"
            port="8009" />
   
         <!--