You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by lu...@apache.org on 2003/01/24 00:45:13 UTC

cvs commit: jakarta-tomcat-catalina/webapps/docs ssl-howto.xml

luehe       2003/01/23 15:45:12

  Modified:    webapps/docs ssl-howto.xml
  Log:
  Updated SSL configuration info with appropriate connector and socket factory class names, so that it matches the info in server.xml
  
  Revision  Changes    Path
  1.4       +5 -5      jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml
  
  Index: ssl-howto.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ssl-howto.xml	15 Jan 2003 03:40:43 -0000	1.3
  +++ ssl-howto.xml	23 Jan 2003 23:45:12 -0000	1.4
  @@ -270,13 +270,13 @@
   for an SSL connector is included in the default <code>server.xml</code>
   file installed with Tomcat.  It will look something like this:</p>
   <source>
  -&lt;-- Define an SSL HTTP/1.1 Connector on port 8443 --&gt;
  +&lt;-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
   &lt;!--
  -&lt;Connector className="org.apache.catalina.connector.http.HttpConnector"
  +&lt;Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
              port="8443" minProcessors="5" maxProcessors="75"
  -           enableLookups="true"
  -           acceptCount="10" debug="0" scheme="https" secure="true"&gt;
  -  &lt;Factory className="org.apache.catalina.net.SSLServerSocketFactory"
  +           enableLookups="true" disableUploadTimeout="true"
  +           acceptCount="100" debug="0" scheme="https" secure="true"&gt;
  +  &lt;Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory"
              clientAuth="false" protocol="TLS"/&gt;
   &lt;/Connector&gt;
   --&gt;
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>