From a67f1f3917c7152a8111cd8a0c2282762dd92130 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Thu, 25 Mar 2021 15:33:59 +0100 Subject: [PATCH] Reduce ssl session cache --- templates/nginx.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 6f8e1e6..153fec1 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -6,7 +6,7 @@ server { ssl_certificate {{ certs_dir }}/{{ node_exporter_cert }}/fullchain; ssl_certificate_key {{ certs_dir }}/{{ node_exporter_cert }}/key; ssl_session_timeout 1d; - ssl_session_cache shared:SSL:50m; + ssl_session_cache shared:SSL:10m; ssl_session_tickets off; access_log off;