From 3761f9e503b83170c29ee4a4588b40a4d27f1601 Mon Sep 17 00:00:00 2001 From: mturk Date: Tue, 28 Nov 2006 08:51:21 +0000 Subject: [PATCH] Fix example AprSLL. We have a new param SSLEnabled. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@479953 13f79535-47bb-0310-9956-ffa450edef68 --- webapps/docs/apr.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webapps/docs/apr.xml b/webapps/docs/apr.xml index 989c1b9c0..688ba398e 100644 --- a/webapps/docs/apr.xml +++ b/webapps/docs/apr.xml @@ -114,13 +114,16 @@

Name of the SSLEngine to use. off: Do not use SSL, on: Use SSL but no specific ENGINE. - The default value is on. + The default value is on. This initializes the native SSL engine, then enable the use of this engine in the connector using the SSLEnabled attribute. Example: <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />

+

See the Official OpenSSL + website for more details on SSL hardware engines and manufacturers. +

@@ -287,7 +290,7 @@ maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" - SSLEngine="on" + SSLEnabled="true" SSLCertificateFile="${catalina.base}/conf/localhost.crt" SSLCertificateKeyFile="${catalina.base}/conf/localhost.key" />

-- 2.11.0