apache: Use only TLS1.3 where available
This commit is contained in:
parent
baf0b53d97
commit
e571d171da
2 changed files with 7 additions and 3 deletions
|
@ -50,8 +50,8 @@
|
||||||
- "/etc/httpd/conf.local.d"
|
- "/etc/httpd/conf.local.d"
|
||||||
|
|
||||||
- name: create ssl config
|
- name: create ssl config
|
||||||
copy:
|
template:
|
||||||
src: ssl.conf
|
src: ssl.conf.j2
|
||||||
dest: /etc/httpd/conf.local.d/ssl.conf
|
dest: /etc/httpd/conf.local.d/ssl.conf
|
||||||
mode: 0644
|
mode: 0644
|
||||||
owner: root
|
owner: root
|
||||||
|
|
|
@ -7,9 +7,13 @@
|
||||||
|
|
||||||
Listen 443
|
Listen 443
|
||||||
|
|
||||||
# Use Mozilla recommended intermediate settings
|
# Use Mozilla recommended settings
|
||||||
|
{% if ansible_os_family == "RedHat" and ansible_distribution_major_version|int >= 8 %}
|
||||||
|
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1 -TLSv1.2
|
||||||
|
{% else %}
|
||||||
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
|
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
|
||||||
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
|
SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
|
||||||
|
{% endif %}
|
||||||
SSLHonorCipherOrder off
|
SSLHonorCipherOrder off
|
||||||
SSLSessionTickets off
|
SSLSessionTickets off
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue