remm        2002/12/03 10:41:31

  Modified:    resources/confinstall server_2.xml
  Log:
  - Modify the default configuration:
    - the upload timeout control is IMO a great feature in specific cases, but isn't
      useful in many others. As I think JNI calls are far from beiing free, I would 
disable
      it by default.
    - the pool used now is symetrical (ie, it doesn't have a dedicated thread dedicated
      to accepting), so I need it could need a higher socket backlog. The default
      value is now the default value specified in the endpoint class (I hope it wasn't
      selected randomly ;-) )
  
  Revision  Changes    Path
  1.6       +11 -12    jakarta-tomcat-5/resources/confinstall/server_2.xml
  
  Index: server_2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/resources/confinstall/server_2.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- server_2.xml      21 Nov 2002 09:39:41 -0000      1.5
  +++ server_2.xml      3 Dec 2002 18:41:31 -0000       1.6
  @@ -1,18 +1,17 @@
  -               minProcessors="5" maxProcessors="75"
  -               enableLookups="true" redirectPort="8443"
  -               acceptCount="10" debug="0" connectionTimeout="20000"
  -               useURIValidationHack="false" />
  +               minProcessors="5" maxProcessors="100"
  +               enableLookups="true"redirectPort="8443" acceptCount="100"
  +               debug="0" connectionTimeout="20000" 
  +               disableUploadTimeout="true" />
       <!-- Note : To disable connection timeouts, set connectionTimeout value 
        to -1 -->
   
       <!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
       <!--
  -    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
  +    <Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
                  port="8443" minProcessors="5" maxProcessors="75"
  -               enableLookups="true"
  -            acceptCount="10" debug="0" scheme="https" secure="true"
  -               useURIValidationHack="false">
  -      <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
  +               enableLookups="true" disableUploadTimeout="true"
  +            acceptCount="100" debug="0" scheme="https" secure="true">
  +      <Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory"
                  clientAuth="false" protocol="TLS" />
       </Connector>
       -->
  @@ -28,11 +27,11 @@
       <!-- Define a Proxied HTTP/1.1 Connector on port 8082 -->
       <!-- See proxy documentation for more information about using this. -->
       <!--
  -    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
  +    <Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
                  port="8082" minProcessors="5" maxProcessors="75"
                  enableLookups="true"
  -               acceptCount="10" debug="0" connectionTimeout="20000"
  -               proxyPort="80" useURIValidationHack="false" />
  +               acceptCount="100" debug="0" connectionTimeout="20000"
  +               proxyPort="80" disableUploadTimeout="true" />
       -->
   
       <!-- An Engine represents the entry point (within Catalina) that processes
  
  
  

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

Reply via email to