You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by George Sexton <gs...@mhsoftware.com> on 2007/01/23 00:30:16 UTC

Tomcat 5.5 SSL Configuration Documentation Errors

Here are some misc. doc errors for the Tomcat 5.5 SSL topic I noticed:

The Connector configuration XML snippet has a semi-colon after 
secure="true".

The Connector configuration XML snippet references minProcessors and 
maxProcessors. These parameters do not seem to be current parameters for 
the HTTP connector. They appear to have been deprecated for the AJP 
connector. It appears they are replaced with minSpareThreads and 
maxThreads would be the closest matches.

debug= is referenced, but not documented in the standard Connector 
reference.

The attribute for "disableUploadTimeout" is the default. Since it's the 
default, it's kind of redundant.  This also applies to clientAuth, and 
sslProtocol.

So, the corrected example would be:

<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
<!--
<Connector 
           port="8443" enableLookups="true"
           maxThreads="75"
           acceptCount="100" scheme="https" secure="true"/>
-->


-- 
George Sexton
MH Software, Inc.
Voice: +1 303 438 9585
URL:   http://www.mhsoftware.com/


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org