remm        02/03/07 21:35:46

  Modified:    catalina/src/conf server.xml
  Log:
  - Add the Coyote HTTP/1.1 connector in the default configuration, on port 8081.
  - Request parameter handling is not ported yet (this breaks the welcome page 
redirects).
  - Session support is not ported yet (this breaks JSPs which need a session).
  - Some minor tweaks are still to be done in the OutputBuffer (to minimize the usage
    of chunking a bit).
  - The chunking behavior is now sane in all cases; this should fix the problems
    with Cocoon 2, and help JSP a bit, also.
  - Profiling has revealed NO hotspots (don't forget to disable the access log valve
    before testing), and the vast majority of the CPU time is spent in java.net.*
    (for simple servlets, obviously).
  
  Revision  Changes    Path
  1.54      +10 -4     jakarta-tomcat-4.0/catalina/src/conf/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/conf/server.xml,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- server.xml        8 Feb 2002 17:07:42 -0000       1.53
  +++ server.xml        8 Mar 2002 05:35:46 -0000       1.54
  @@ -92,6 +92,12 @@
       <!-- Note : To disable connection timeouts, set connectionTimeout value 
        to -1 -->
   
  +    <!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8081 -->
  +    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
  +               port="8081" minProcessors="5" maxProcessors="75"
  +               enableLookups="true" redirectPort="8443"
  +               acceptCount="10" debug="0" connectionTimeout="60000"/>
  +
       <!-- Define an SSL HTTP/1.1 Connector on port 8443 -->
       <!--
       <Connector className="org.apache.catalina.connector.http.HttpConnector"
  @@ -108,20 +114,20 @@
                  port="8009" minProcessors="5" maxProcessors="75"
                  acceptCount="10" debug="0"/>
   
  -    <!-- Define a Proxied HTTP/1.1 Connector on port 8081 -->
  +    <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
       <!-- See proxy documentation for more information about using this. -->
       <!--
       <Connector className="org.apache.catalina.connector.http.HttpConnector"
  -               port="8081" minProcessors="5" maxProcessors="75"
  +               port="8082" minProcessors="5" maxProcessors="75"
                  enableLookups="true"
                  acceptCount="10" debug="0" connectionTimeout="60000"
                  proxyPort="80"/>
       -->
   
  -    <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8082 -->
  +    <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8083 -->
       <!--
       <Connector className="org.apache.catalina.connector.http10.HttpConnector"
  -               port="8082" minProcessors="5" maxProcessors="75"
  +               port="8083" minProcessors="5" maxProcessors="75"
                  enableLookups="true" redirectPort="8443"
                  acceptCount="10" debug="0"/>
       -->
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to