From: mturk Date: Tue, 28 Nov 2006 08:51:21 +0000 (+0000) Subject: Fix example AprSLL. We have a new param SSLEnabled. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3761f9e503b83170c29ee4a4588b40a4d27f1601;p=tomcat7.0 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 --- 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" />