From 62d0c037a0cb863dad89a8dd45fb2ca794120397 Mon Sep 17 00:00:00 2001 From: MichiK <michik@michik.net> Date: Sun, 29 Sep 2019 23:20:31 +0200 Subject: [PATCH] OCSP stapling --- roles/nginx-https/templates/ssl.conf.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/nginx-https/templates/ssl.conf.j2 b/roles/nginx-https/templates/ssl.conf.j2 index b1741f5..5c3fb54 100644 --- a/roles/nginx-https/templates/ssl.conf.j2 +++ b/roles/nginx-https/templates/ssl.conf.j2 @@ -7,6 +7,7 @@ ssl_dhparam {{ nginx_ssl_dhparam }}; ssl_protocols {{ nginx_ssl_protocols }}; ssl_ciphers {{ nginx_ssl_ciphers }}; ssl_prefer_server_ciphers on; +ssl_stapling on; {% if nginx_https_default_headers %} {% for header in nginx_https_default_headers %} -- GitLab