mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-05 13:43:29 +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
|
||||
SSLCipherSuite {{ apache_ssl_cipher_suite }}
|
||||
SSLProtocol {{ apache_ssl_protocol }}
|
||||
SSLHonorCipherOrder On
|
||||
SSLHonorCipherOrder off
|
||||
{% if apache_vhosts_version == "2.4" %}
|
||||
SSLCompression off
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue