Skip to content
Snippets Groups Projects
Commit fda3e06d authored by Thomas Bellman's avatar Thomas Bellman
Browse files

mod_ssl: Disable SSL v3 (and v2) protocols by default.

Both the SSL v2 and v3 protocols have known problems, and the TLS v1.x
protocols are available to almost everyone.  One known exception is
Internet Explorer 6 on Microsoft Windows XP, but XP is out of support
anyway, so hopefully few people run that.  Users of mod_ssl can override
this, but defaulting to not use insecure protocols is the proper thing.
parent 9102fa64
Branches
No related tags found
No related merge requests found
...@@ -21,6 +21,8 @@ class apache::mod_ssl ...@@ -21,6 +21,8 @@ class apache::mod_ssl
'SSLRandomSeed startup' => 'file:/dev/urandom 256', 'SSLRandomSeed startup' => 'file:/dev/urandom 256',
'SSLRandomSeed connect' => 'builtin', 'SSLRandomSeed connect' => 'builtin',
'SSLCryptoDevice' => 'builtin', 'SSLCryptoDevice' => 'builtin',
# Both SSLv2 and SSLv3 are broken, security-wise
'SSLProtocol' => 'all -SSLv2 -SSLv3',
} }
package { package {
'mod_ssl': 'mod_ssl':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment