From 65043f8a6142f7b9988cd406988b524aa9f0a1f2 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Wed, 14 Oct 2020 22:05:41 +0200 Subject: [PATCH] fix(ssl.conf): fix pillar keys for SSLStapling in ssl.conf on debian --- apache/files/Debian/ssl.conf.jinja | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apache/files/Debian/ssl.conf.jinja b/apache/files/Debian/ssl.conf.jinja index 3729e59..c2bd059 100644 --- a/apache/files/Debian/ssl.conf.jinja +++ b/apache/files/Debian/ssl.conf.jinja @@ -92,9 +92,9 @@ # See https://httpd.apache.org/docs/2.4/ssl/ssl_howto.html for more details # Defaults values taken from https://mozilla.github.io/server-side-tls/ssl-config-generator/ SSLUseStapling {{ use_stapling }} - SSLStaplingResponderTimeout {{ salt['pillar.get']('SSLStaplingResponderTimeout', '5') }} - SSLStaplingReturnResponderErrors {{ salt['pillar.get']('SSLStaplingReturnResponderErrors', 'Off') }} - SSLStaplingCache {{ salt['pillar.get']('SSLStaplingCache', 'shmcb:/var/run/ocsp(128000)') }} + SSLStaplingResponderTimeout {{ salt['pillar.get']('apache:ssl:SSLStaplingResponderTimeout', '5') }} + SSLStaplingReturnResponderErrors {{ salt['pillar.get']('apache:ssl:SSLStaplingReturnResponderErrors', 'Off') }} + SSLStaplingCache {{ salt['pillar.get']('apache:ssl:SSLStaplingCache', 'shmcb:/var/run/ocsp(128000)') }} {%- endif %}