From bb016416703965620fac3c46806362cfdc304907 Mon Sep 17 00:00:00 2001 From: Nicolas Bally Date: Thu, 8 Nov 2018 22:05:15 +0100 Subject: [PATCH] suite --- config/nginx.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/nginx.conf b/config/nginx.conf index 2102f97..f23bb83 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -19,13 +19,17 @@ server { error_page 500 502 503 504 /500.html; client_max_body_size 4G; keepalive_timeout 10; + + include snippets/letsencrypt.conf; } server { listen [::]:80; - server_name intra.quartz.xyz; + server_name www.intra.quartz.xyz; rewrite ^(.*) http://intra.quartz.xyz$1 permanent; + + include snippets/letsencrypt.conf; }