diff options
author | Julien Vehent <jvehent@users.noreply.github.com> | 2015-11-19 21:58:00 -0500 |
---|---|---|
committer | Julien Vehent <jvehent@users.noreply.github.com> | 2015-11-19 21:58:00 -0500 |
commit | e893bb46a96d67b313f9107ac5cf55beab09c03f (patch) | |
tree | b267ec4459f82dc685cbe8025905859bbf3de034 | |
parent | ae95c14c0079d479180c579ab3eea9ffe21e81ba (diff) | |
parent | b168f9a35cd24bbb600765c698cebf2ca5b37246 (diff) | |
download | server-side-tls-e893bb46a96d67b313f9107ac5cf55beab09c03f.zip server-side-tls-e893bb46a96d67b313f9107ac5cf55beab09c03f.tar.gz server-side-tls-e893bb46a96d67b313f9107ac5cf55beab09c03f.tar.bz2 |
Merge pull request #102 from jrchamp/patch-1
Move Apache server config outside VirtualHost
-rw-r--r-- | ssl-config-generator/index.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/ssl-config-generator/index.html b/ssl-config-generator/index.html index faf171d..160efb2 100644 --- a/ssl-config-generator/index.html +++ b/ssl-config-generator/index.html @@ -82,16 +82,17 @@ server { SSLCertificateKeyFile /path/to/private/key SSLCACertificateFile /path/to/all_ca_certs - # {{securityProfile}} configuration, tweak to your needs - SSLProtocol {{sslProtocols}} - SSLCipherSuite {{cipherSuites}} - SSLHonorCipherOrder on -{{compression}} -{{sslSessionTickets}} -{{ocspStapling}} {{hsts}} ... </VirtualHost> + +# {{securityProfile}} configuration, tweak to your needs +SSLProtocol {{sslProtocols}} +SSLCipherSuite {{cipherSuites}} +SSLHonorCipherOrder on +{{compression}} +{{sslSessionTickets}} +{{ocspStapling}} {{ocspStaplingCache}} </pre> </script> |