You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Pier Fumagalli <pi...@betaversion.org> on 2003/04/26 13:52:29 UTC

FW: Documentation error on site:

Fyi


------ Forwarded Message
From: "Amir Gur" <am...@innerpresence.com>
Date: Fri, 25 Apr 2003 18:23:49 -0700
To: <we...@jakarta.apache.org>
Subject: Documentation error on site:

Hi Webmaster,

Hope I got to the right address, if not accept my apology.

In http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html

The section:
Edit the Tomcat Configuration File

Has the following buggy SSL configuration:
   
<Connector className="org.apache.catalina.connector.http.HttpConnector"
           port="8443" minProcessors="5" maxProcessors="75"
           enableLookups="true"
           acceptCount="10" debug="0" scheme="https" secure="true">
  <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
           clientAuth="false" protocol="TLS"/>
</Connector>

I had to use the following to make it work with Tomcat 4.1.18:

<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
           port="8443" minProcessors="5" maxProcessors="75"
           enableLookups="true" disableUploadTimeout="true"
           acceptCount="100" debug="0" scheme="https" secure="true">
  <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
           clientAuth="false" protocol="TLS"/>
</Connector>


Amir


------ End of Forwarded Message