Author: rjung Date: Sun May 15 09:56:25 2011 New Revision: 1103303 URL: http://svn.apache.org/viewvc?rev=1103303&view=rev Log: Fix trivial docs tpyos.
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=1103303&r1=1103302&r2=1103303&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/ssl-howto.xml (original) +++ tomcat/trunk/webapps/docs/ssl-howto.xml Sun May 15 09:56:25 2011 @@ -543,9 +543,9 @@ information, at <ul> <li>Tomcat must have a connector with the attribute <strong>isSecure</strong> set to <code>true</code>.</li> - <li>If SSL conections are managed by a proxy or a hardware accelerator + <li>If SSL connections are managed by a proxy or a hardware accelerator they must populate the SSL request headers (see the SSLValve) so that - the SSL session ID is visibale to Tomcat.</li> + the SSL session ID is visible to Tomcat.</li> <li>If Tomcat terminates the SSL connection, it will not be possible to use session replication as the SSL session IDs will be different on each node.</li> @@ -585,7 +585,7 @@ public class SessionTrackingModeListener } </source> </p> - <p>Note: SSL session tracking is implemented for the BIO and NIO connetcors. + <p>Note: SSL session tracking is implemented for the BIO and NIO connectors. It is not yet implemented for the APR connector.</p> </section> @@ -613,16 +613,16 @@ org.apache.tomcat.util.net.SSLSessionMan request.getAttribute("javax.servlet.request.ssl_session_mgr"); mgr.invalidateSession(); -// Close the conection since the SSL session will be active until the connection +// Close the connection since the SSL session will be active until the connection // is closed response.setHeader("Connection", "close"); </source> Note that this code is Tomcat specific due to the use of the SSLSessionManager class. This is currently only available for the BIO and - NIO conenctors, not the APR/native connector. + NIO connectors, not the APR/native connector. </p> </section> </body> -</document> \ No newline at end of file +</document> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org