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> -<-- Define a blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --> +<!-- Define a blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="org.apache.coyote.http11.Http11Protocol" port="8443" .../> -<-- Define a non-blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --> +<!-- Define a non-blocking Java SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="8443" .../> </source> Alternatively, to specify an APR connector (the APR library must be available) use: <source> -<-- Define a APR SSL Coyote HTTP/1.1 Connector on port 8443 --> +<!-- Define a APR SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="org.apache.coyote.http11.Http11AprProtocol" port="8443" .../> </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> -<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> +<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> <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> -<-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> +<!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --> <Connector protocol="HTTP/1.1" port="8443" maxThreads="200" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org