From 68ff6c83378cfd6dd68e6d4cc03807617331b421 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Mon, 31 Jan 2022 11:18:21 +0100 Subject: [PATCH] Use ISRG_ROOT_X1 as DST_ROOT is not available --- core/nginx/conf/tls.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/core/nginx/conf/tls.conf b/core/nginx/conf/tls.conf index 4372c5af..0ed832ed 100644 --- a/core/nginx/conf/tls.conf +++ b/core/nginx/conf/tls.conf @@ -3,6 +3,7 @@ ssl_certificate_key {{ TLS[1] }}; {% if TLS_FLAVOR in ['letsencrypt','mail-letsencrypt'] %} ssl_certificate {{ TLS[2] }}; ssl_certificate_key {{ TLS[3] }}; +ssl_trusted_certificate /etc/ssl/certs/ca-cert-ISRG_Root_X1.pem {% endif %} ssl_session_timeout 1d; ssl_session_tickets off;