feat(ssl.conf): add SSLSessionTickets to ssl.conf on debian

This commit is contained in:
Benjamin Neff 2020-10-14 22:09:37 +02:00
parent 65043f8a61
commit 41a7a83af0
No known key found for this signature in database
GPG Key ID: 971464C3F1A90194

View File

@ -96,6 +96,13 @@
SSLStaplingReturnResponderErrors {{ salt['pillar.get']('apache:ssl:SSLStaplingReturnResponderErrors', 'Off') }}
SSLStaplingCache {{ salt['pillar.get']('apache:ssl:SSLStaplingCache', 'shmcb:/var/run/ocsp(128000)') }}
{%- endif %}
{% set ssl_session_ticket = salt['pillar.get']('apache:ssl:SSLSessionTickets') -%}
{% if ssl_session_ticket -%}
# Enable or disable use of TLS session tickets
# Default: On
SSLSessionTickets {{ ssl_session_ticket }}
{%- endif %}
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet