diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-06-26 08:45:17 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-06-26 08:45:17 +0200 |
commit | 8b146bc95e3894f6dba30609f1f546ded220152a (patch) | |
tree | 555264577bb090d120182d44c0c4607b995bdf12 /docs/manual/ssl/ssl_howto.html.en | |
parent | Move SSLCACertificate* into the correct (allowed) context in the examples. (diff) | |
download | apache2-8b146bc95e3894f6dba30609f1f546ded220152a.tar.xz apache2-8b146bc95e3894f6dba30609f1f546ded220152a.zip |
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1353829 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/ssl/ssl_howto.html.en')
-rw-r--r-- | docs/manual/ssl/ssl_howto.html.en | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/manual/ssl/ssl_howto.html.en b/docs/manual/ssl/ssl_howto.html.en index 955caebef8..40a1d90ffc 100644 --- a/docs/manual/ssl/ssl_howto.html.en +++ b/docs/manual/ssl/ssl_howto.html.en @@ -178,11 +178,12 @@ SSLVerifyDepth 1 <pre class="prettyprint lang-config"> SSLVerifyClient none +SSLCACertificateFile conf/ssl.crt/ca.crt +SSLCACertificatePath conf/ssl.crt + <Directory /usr/local/apache2/htdocs/secure/area> SSLVerifyClient require SSLVerifyDepth 5 - SSLCACertificateFile conf/ssl.crt/ca.crt - SSLCACertificatePath conf/ssl.crt SSLOptions +FakeBasicAuth SSLRequireSSL AuthName "Snake Oil Authentication" @@ -209,11 +210,12 @@ SSLVerifyClient none <pre class="prettyprint lang-config"> SSLVerifyClient none +SSLCACertificateFile conf/ssl.crt/ca.crt +SSLCACertificatePath conf/ssl.crt + <Directory /usr/local/apache2/htdocs/secure/area> SSLVerifyClient require SSLVerifyDepth 5 - SSLCACertificateFile conf/ssl.crt/ca.crt - SSLCACertificatePath conf/ssl.crt SSLOptions +FakeBasicAuth SSLRequireSSL SSLRequire %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \ |