Skip to content

Commit 932f0d0

Browse files
committed
Merge pull request #1220 from tobixen/ssl_cipher_rc4_deprecated
RC4 is deprecated
2 parents 383bca7 + 445d436 commit 932f0d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ Installs [Apache SSL features][`mod_ssl`] and uses the `ssl.conf.erb` template t
15131513

15141514
**Parameters within `apache::mod::ssl`**:
15151515

1516-
- `ssl_cipher`: Default: 'HIGH:MEDIUM:!aNULL:!MD5'.
1516+
- `ssl_cipher`: Default: 'HIGH:MEDIUM:!aNULL:!MD5:!RC4'.
15171517
- `ssl_compression`: Default: 'false'.
15181518
- `ssl_cryptodevice`: Default: 'builtin'.
15191519
- `ssl_honorcipherorder`: Default: 'On'.

manifests/mod/ssl.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$ssl_cryptodevice = 'builtin',
44
$ssl_options = [ 'StdEnvVars' ],
55
$ssl_openssl_conf_cmd = undef,
6-
$ssl_cipher = 'HIGH:MEDIUM:!aNULL:!MD5',
6+
$ssl_cipher = 'HIGH:MEDIUM:!aNULL:!MD5:!RC4',
77
$ssl_honorcipherorder = 'On',
88
$ssl_protocol = [ 'all', '-SSLv2', '-SSLv3' ],
99
$ssl_pass_phrase_dialog = 'builtin',

0 commit comments

Comments
 (0)