You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2013/02/15 16:57:01 UTC

svn commit: r1446650 - /tomcat/trunk/webapps/docs/ssl-howto.xml

Author: kkolinko
Date: Fri Feb 15 15:57:01 2013
New Revision: 1446650

URL: http://svn.apache.org/r1446650
Log:
Correct typos in configuration samples: XML comments start with '<!--'.

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=1446650&r1=1446649&r2=1446650&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/ssl-howto.xml (original)
+++ tomcat/trunk/webapps/docs/ssl-howto.xml Fri Feb 15 15:57:01 2013
@@ -297,17 +297,17 @@ then it will use the APR SSL implementat
   in the <b>protocol</b> attribute of the Connector.<br/>
   To define a Java (JSSE) connector, regardless of whether the APR library is loaded or not do:
 <source>
-&lt;-- Define a blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
+&lt;!-- Define a blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
 &lt;Connector protocol="org.apache.coyote.http11.Http11Protocol"
            port="8443" .../&gt;
 
-&lt;-- Define a non-blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
+&lt;!-- Define a non-blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
 &lt;Connector protocol="org.apache.coyote.http11.Http11NioProtocol"
            port="8443" .../&gt;
 </source>
 Alternatively, to specify an APR connector (the APR library must be available) use:
 <source>
-&lt;-- Define a APR SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
+&lt;!-- Define a APR SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
 &lt;Connector protocol="org.apache.coyote.http11.Http11AprProtocol"
            port="8443" .../&gt;
 </source>
@@ -347,7 +347,7 @@ file installed with Tomcat.  To configur
 will need to remove the comments and edit it so it looks something like
 this:</p>
 <source>
-&lt;-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
+&lt;!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
 &lt;Connector
            protocol="HTTP/1.1"
            port="8443" maxThreads="200"
@@ -361,7 +361,7 @@ this:</p>
   The APR connector uses different attributes for many SSL settings,
   particularly keys and certificates. An example of an APR configuration is:
 <source>
-&lt;-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
+&lt;!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --&gt;
 &lt;Connector
            protocol="HTTP/1.1"
            port="8443" maxThreads="200"



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