mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-12-22 19:10:19 +01:00
Disable SSLHonorCipherOrder
It's recommended by https://ssl-config.mozilla.org/#server=apache&version=2.4.41&config=modern&openssl=1.1.1k&guideline=5.7 to disable SSLHonorCipherOrder.
This commit is contained in:
parent
71bace22fe
commit
623b383a99
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLCipherSuite {{ apache_ssl_cipher_suite }}
|
SSLCipherSuite {{ apache_ssl_cipher_suite }}
|
||||||
SSLProtocol {{ apache_ssl_protocol }}
|
SSLProtocol {{ apache_ssl_protocol }}
|
||||||
SSLHonorCipherOrder On
|
SSLHonorCipherOrder off
|
||||||
{% if apache_vhosts_version == "2.4" %}
|
{% if apache_vhosts_version == "2.4" %}
|
||||||
SSLCompression off
|
SSLCompression off
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue