Author: markt
Date: Tue Jun 26 17:59:06 2012
New Revision: 1354137
URL: http://svn.apache.org/viewvc?rev=1354137&view=rev
Log:
Align protocol values with the surrounding text
Modified:
tomcat/trunk/webapps/docs/ssl-howto.xml
Modified: tomcat/trunk/webapps/docs/ssl-howto.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/ssl-howto.xml?rev=1354137&r1=1354136&r2=1354137&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/ssl-howto.xml (original)
+++ tomcat/trunk/webapps/docs/ssl-howto.xml Tue Jun 26 17:59:06 2012
@@ -348,9 +348,8 @@ will need to remove the comments and edi
this:</p>
<source>
<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
-<-- Hard-coded to use the NIO protocol implementation -->
<Connector
- protocol="org.apache.coyote.http11.Http11NioProtocol"
+ protocol="HTTP/1.1"
port="8443" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="${user.home}/.keystore" keystorePass="changeit"
@@ -364,9 +363,8 @@ this:</p>
particularly keys and certificates. An example of an APR configuration is:
<source>
<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -->
-<-- Hard-coded to use the APR protocol implementation -->
<Connector
- protocol="org.apache.coyote.http11.Http11AprProtocol"
+ protocol="HTTP/1.1"
port="8443" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
SSLCertificateFile="/usr/local/ssl/server.crt"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]