Author: markt Date: Fri Jan 5 11:07:18 2018 New Revision: 1820281 URL: http://svn.apache.org/viewvc?rev=1820281&view=rev Log: Update configuration to new style
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=1820281&r1=1820280&r2=1820281&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/ssl-howto.xml (original) +++ tomcat/trunk/webapps/docs/ssl-howto.xml Fri Jan 5 11:07:18 2018 @@ -498,15 +498,20 @@ nsComment="Testing OCSP Certificate" for more information about installation of APR. A basic OCSP-enabled connector definition in the <code>server.xml</code> file looks as follows:</p> <source> -<![CDATA[<Connector port="8443" - protocol="org.apache.coyote.http11.Http11AprProtocol" - secure="true" scheme="https" - SSLEnabled="true" SSLCertificateFile="/path/to/ocsp-cert.crt" - SSLCertificateKeyFile="/path/to/ocsp-cert.key" - SSLCACertificateFile="/path/to/ca.pem" - SSLVerifyClient="require" - SSLVerifyDepth="10" - clientAuth="true"/>]]> +<![CDATA[<Connector + port="8443" + protocol="org.apache.coyote.http11.Http11AprProtocol" + secure="true" + scheme="https" + SSLEnabled="true" + <SSLHostConfig + caCertificateFile="/path/to/ca.pem" + certificateVerification="require" + certificateVerificationDepth="10" > + <Certificate + certificateFile="/path/to/ocsp-cert.crt" + certificateKeyFile="/path/to/ocsp-cert.key" /> + </SSLHostConfig>]]> </source> </subsection> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org