From: Joe Orton Date: Thu, 29 Nov 2007 13:58:22 +0000 (+0000) Subject: - add documentation of mod_ssl OCSP directives. X-Git-Tag: 2.3.0~1207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f49cd42ba3f4570443029f1f234febf30237aed1;p=apache - add documentation of mod_ssl OCSP directives. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@599445 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 5df667a962..43cae84c8f 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -1701,4 +1701,64 @@ SSLCryptoDevice ubsec + +SSLOCSPEnable +Enable OCSP validation of the client certificate chain +SSLOCSPEnable flag +server config +virtual host +Available in httpd 2.3 and later, if using OpenSSL 0.9.7 or later + + +

This option enables OCSP validation of the client certificate +chain. If this option is enabled, certificates in the client's +certificate chain will be validated against an OCSP responder after +normal verification (including CRL checks) have taken place.

+ +

The OCSP responder used is either extracted from the certificate +itself, or derived by configuration; see the +SSLOCSPDefaultResponder and +SSLOCSPOverrideResponder +directives.

+ +Example +SSLVerifyClient on
+SSLOCSPEnable on
+SSLOCSPDefaultResponder http://responder.example.com:8888/responder
+SSLOCSPOverrideResponder on +
+
+
+ + +SSLOCSPDefaultResponder +Set the default responder URI for OCSP validation +SSLOCSDefaultResponder uri +server config +virtual host +Available in httpd 2.3 and later, if using OpenSSL 0.9.7 or later + + +

This option sets the default OCSP responder to use. If SSLOCSPOverrideResponder is not enabled, +the URI given will be used only if no responder URI is specified in +the certificate being verified.

+
+
+ + +SSLOCSPOverrideResponder +Force use of the default responder URI for OCSP validation +SSLOCSPOverrideResponder flag +server config +virtual host +Available in httpd 2.3 and later, if using OpenSSL 0.9.7 or later + + +

This option forces the configured default OCSP responder to be used +during OCSP certificate validation, regardless of whether the +certificate being validated references an OCSP responder.

+
+
+