From: Joe Orton
-This referenced file is simply the concatenation of the various PEM-encoded
-certificate files, in order of preference. Use this directive alternatively
-or additionally to SSLProxyMachineCertificatePath.
-
SSLProxyMachineCertificatePath. The referenced file can contain any number of pairs of client
+certificate and associated private key. Each pair can be specified in
+either (certificate, key) or (key, certificate) order.
+
+When challenged to provide a client certificate by a remote server,
+the server should provide a list of acceptable certificate
+authority names in the challenge. If such a list is not
+provided, mod_ssl will use the first configured
+client cert/key. If a list of CA names is provided,
+mod_ssl will iterate through that list, and attempt
+to find a configured client cert which was issued either directly by
+that CA, or indirectly via any number of intermediary CA certificates.
+The chain of intermediate CA certificates can be built from those
+configured with SSLProxyMachineCertificateChainFile. The
+first configured matching certificate will then be supplied in
+response to the challenge.
If the list of CA names is provided by the remote server,
+and no matching client certificate can be found, no client
+certificate will be provided by mod_ssl, which will
+likely fail the SSL/TLS handshake (depending on the remote server
+configuration).
Currently there is no support for encrypted private keys
-This directive sets the directory where you keep the certificates and -keys used for authentication of the proxy server to remote servers. +This directive sets the directory where you keep the client +certificates and keys used for authentication of the proxy server to +remote servers.
-mod_ssl will attempt to load every file inside the specified
-directory, but will ignore any sub-directories. Each file should
-contain a PEM-encoded certificate and matching private key.
+mod_ssl will attempt to load every file inside the specified directory
+as if it was configured individually with SSLProxyMachineCertificateFile.
Currently there is no support for encrypted private keys
diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index bbb0123b43a..6cee399b4fe 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -1838,13 +1838,14 @@ SSLStrictSNIVHostCheck on-This directive sets the directory where you keep the certificates and -keys used for authentication of the proxy server to remote servers. +This directive sets the directory where you keep the client +certificates and keys used for authentication of the proxy server to +remote servers.
-mod_ssl will attempt to load every file inside the specified
-directory, but will ignore any sub-directories. Each file should
-contain a PEM-encoded certificate and matching private key.
+mod_ssl will attempt to load every file inside the specified directory
+as if it was configured individually with
Currently there is no support for encrypted private keys
@@ -1879,10 +1880,32 @@ This directive sets the all-in-one file where you keep the certificates and keys used for authentication of the proxy server to remote servers.
-This referenced file is simply the concatenation of the various PEM-encoded
-certificate files, in order of preference. Use this directive alternatively
-or additionally to SSLProxyMachineCertificatePath.
-
SSLProxyMachineCertificatePath. The referenced file can contain any number of pairs of client
+certificate and associated private key. Each pair can be specified in
+either (certificate, key) or (key, certificate) order.
+
+When challenged to provide a client certificate by a remote server,
+the server should provide a list of acceptable certificate
+authority names in the challenge. If such a list is not
+provided,
If the list of CA names is provided by the remote server,
+and no matching client certificate can be found, no client
+certificate will be provided by
Currently there is no support for encrypted private keys