From: rjung
Date: Sun, 15 May 2011 09:56:25 +0000 (+0000)
Subject: Fix trivial docs tpyos.
X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5a0398a98a385a92ef541e77142e20948db022c0;p=tomcat7.0
Fix trivial docs tpyos.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1103303 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/webapps/docs/ssl-howto.xml b/webapps/docs/ssl-howto.xml
index 653a7062e..a9cda5bf0 100644
--- a/webapps/docs/ssl-howto.xml
+++ b/webapps/docs/ssl-howto.xml
@@ -543,9 +543,9 @@ information, at
- Tomcat must have a connector with the attribute
isSecure set to
true.
- - If SSL conections are managed by a proxy or a hardware accelerator
+
- 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.
+ the SSL session ID is visible to Tomcat.
- 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.
@@ -585,7 +585,7 @@ public class SessionTrackingModeListener implements ServletContextListener {
}
- Note: SSL session tracking is implemented for the BIO and NIO connetcors.
+
Note: SSL session tracking is implemented for the BIO and NIO connectors.
It is not yet implemented for the APR connector.
@@ -613,16 +613,16 @@ org.apache.tomcat.util.net.SSLSessionManager mgr =
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");
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.