Initial Import
This commit is contained in:
34
DOC/config_ciphers_apache2.2.txt
Normal file
34
DOC/config_ciphers_apache2.2.txt
Normal file
@ -0,0 +1,34 @@
|
||||
|
||||
## - must go here - NOT in VirtualHost section !!
|
||||
## -
|
||||
SSLCompression off
|
||||
|
||||
<VirtualHost <ip-addresss>:443>
|
||||
|
||||
...
|
||||
|
||||
SSLEngine on
|
||||
|
||||
## - don't support weak ciphers
|
||||
SSLStrictSNIVHostCheck off
|
||||
SSLHonorCipherOrder on
|
||||
SSLCompression off
|
||||
SSLProtocol ALL -SSLv2 -SSLv3
|
||||
SSLCipherSuite 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA'
|
||||
|
||||
## - HTTP Strict Transport Security (HSTS)
|
||||
## -
|
||||
## - HSTS tells a browser that the website should only be accessed through
|
||||
## - a secure connection. The HSTS header will be remembered by a standard
|
||||
## compliant browser for max-age seconds.
|
||||
## -
|
||||
## - Remember this settings for 1/2 year
|
||||
## -
|
||||
Header add Strict-Transport-Security "max-age=15768000"
|
||||
|
||||
SSLCertificateFile ..
|
||||
SSLCertificateKeyFile ..
|
||||
SSLCertificateChainFile ..
|
||||
...
|
||||
|
||||
</VirtualHost>
|
Reference in New Issue
Block a user