summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah <micah@riseup.net>2016-02-26 09:06:23 +0000
committerMicah <micah@riseup.net>2016-02-26 09:06:23 +0000
commitf9a33075bd2df0a6b2f17629a45c7723827f724f (patch)
tree9d3a80512b16a1ccf3645740825b7ba8e315a4d1 /manifests
parentf3c4e0f6b81eaa3f53b33792e1b8552bd41848d1 (diff)
parent54d5f758df1ceea446cb16cd0c3ec0eb754b8058 (diff)
Merge branch 'ssl_cipher_suite_default' into 'master'
Ssl cipher suite default See corresponding issue: https://gitlab.com/shared-puppet-modules-group/apache/issues/9 and the related LEAP issue: https://leap.se/code/issues/7933 See merge request !7
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 1079d85..ad1478a 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -22,7 +22,7 @@ class apache(
$default_ssl_certificate_file = absent,
$default_ssl_certificate_key_file = absent,
$default_ssl_certificate_chain_file = absent,
- $ssl_cipher_suite = $certs::ssl_config::ciphers_http
+ $ssl_cipher_suite = 'HIGH:MEDIUM:!aNULL:!MD5'
) {
case $::operatingsystem {
centos: { include apache::centos }