Disable SSLv3
Add the 'ssl-default-bind-options no-sslv3' option to the configuration file so that SSLv3 is not enabled. Change-Id: I2d06189e61064d9af10bea1091fba31163331379 Closes-Bug: 1640560
This commit is contained in:
parent
d7cc047f8d
commit
1716a70703
3
releasenotes/notes/disable-sslv3-303acdcc6b593180.yaml
Normal file
3
releasenotes/notes/disable-sslv3-303acdcc6b593180.yaml
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
fixes:
|
||||
- SSLv3 is now disabled in the haproxy daemon configuration by default.
|
@ -10,7 +10,10 @@ global
|
||||
maxconn 4096
|
||||
tune.bufsize 384000
|
||||
stats socket /var/run/haproxy.stat level admin mode 600
|
||||
{% if haproxy_ssl | bool %}tune.ssl.default-dh-param {{haproxy_ssl_dh_param}}{% endif %}
|
||||
{% if haproxy_ssl | bool %}
|
||||
ssl-default-bind-options no-sslv3
|
||||
tune.ssl.default-dh-param {{haproxy_ssl_dh_param}}
|
||||
{% endif %}
|
||||
|
||||
defaults
|
||||
log global
|
||||
|
Loading…
Reference in New Issue
Block a user