diff options
author | Julien Vehent [:ulfr] <jvehent@users.noreply.github.com> | 2016-07-28 09:39:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-28 09:39:46 -0400 |
commit | 832746e6658b7da5434a785f74172ce15fa85f77 (patch) | |
tree | 812e9989995597974ec4fa49cc4c1d5208e47c06 | |
parent | 324df1e93b311929d3f4216b7e173c98edf10f04 (diff) | |
parent | 8b39a4dc3c471dde497b0e27a420da020c4a306d (diff) | |
download | server-side-tls-832746e6658b7da5434a785f74172ce15fa85f77.zip server-side-tls-832746e6658b7da5434a785f74172ce15fa85f77.tar.gz server-side-tls-832746e6658b7da5434a785f74172ce15fa85f77.tar.bz2 |
Merge pull request #133 from osirisinferi/ca-certificate
Comment SSLCACertificateFile
-rw-r--r-- | ssl-config-generator/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssl-config-generator/index.html b/ssl-config-generator/index.html index f6f46cf..ef3d573 100644 --- a/ssl-config-generator/index.html +++ b/ssl-config-generator/index.html @@ -86,7 +86,9 @@ server { SSLEngine on {{certFile}} SSLCertificateKeyFile /path/to/private/key - SSLCACertificateFile /path/to/all_ca_certs + + # Uncomment the following directive when using client certificate authentication + #SSLCACertificateFile /path/to/ca_certs_for_client_authentication {{hsts}} ... |