Skip to content

Commit

Permalink
Merge "Fix for FREAK SSL vulnerability"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Jul 24, 2015
2 parents 62a623d + 488f753 commit efa4224
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ def _set_global_config(config, sock_path):
'user nobody',
'group nogroup',
'log /dev/log local0',
'log /dev/log local1 notice'
'log /dev/log local1 notice',
'tune.ssl.default-dh-param 2048',
'ssl-default-bind-ciphers ECDH+AESGCM:' \
'DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:' \
'DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:' \
'RSA+3DES:!aNULL:!MD5:!DSS'
]
conf.append('stats socket %s mode 0666 level user' % sock_path)
return ("\n\t".join(conf))
Expand Down

0 comments on commit efa4224

Please sign in to comment.