Author: remm Date: Thu Mar 29 07:02:08 2007 New Revision: 523717 URL: http://svn.apache.org/viewvc?view=rev&rev=523717 Log: - Default configuration updates.
Modified: tomcat/tc6.0.x/trunk/res/confinstall/server_1.xml tomcat/tc6.0.x/trunk/res/confinstall/server_2.xml Modified: tomcat/tc6.0.x/trunk/res/confinstall/server_1.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/res/confinstall/server_1.xml?view=diff&rev=523717&r1=523716&r2=523717 ============================================================================== --- tomcat/tc6.0.x/trunk/res/confinstall/server_1.xml (original) +++ tomcat/tc6.0.x/trunk/res/confinstall/server_1.xml Thu Mar 29 07:02:08 2007 @@ -32,7 +32,14 @@ Documentation at /docs/config/service.html --> <Service name="Catalina"> - + + <!--The connectors can use a shared executor, you can define one or more named thread pools--> + <!-- + <Executor name="tomcatThreadPool" namePrefix="catalina-exec-" + maxThreads="150" minSpareThreads="4"/> + --> + + <!-- A "Connector" represents an endpoint by which requests are received and responses are returned. Documentation at : Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) Modified: tomcat/tc6.0.x/trunk/res/confinstall/server_2.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/res/confinstall/server_2.xml?view=diff&rev=523717&r1=523716&r2=523717 ============================================================================== --- tomcat/tc6.0.x/trunk/res/confinstall/server_2.xml (original) +++ tomcat/tc6.0.x/trunk/res/confinstall/server_2.xml Thu Mar 29 07:02:08 2007 @@ -1,14 +1,20 @@ protocol="HTTP/1.1" - maxThreads="150" connectionTimeout="20000" + connectionTimeout="20000" redirectPort="8443" /> - + <!-- A "Connector" using the shared thread pool--> + <!-- + <Connector executor="tomcatThreadPool" + port="8080" protocol="HTTP/1.1" + connectionTimeout="20000" + redirectPort="8443" /> + --> <!-- Define a SSL HTTP/1.1 Connector on port 8443 This connector uses the JSSE configuration, when using APR, the connector should be using the OpenSSL style configuration described in the APR documentation --> <!-- - <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" - maxThreads="150" scheme="https" secure="true" + <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" + maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" /> --> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]