From d05951c2676329dbdd4c25f5913d01ffd0ee1298 Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 21 Nov 2025 12:46:08 +0000 Subject: [PATCH] added cert to other https --- nginx/nginx.conf.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nginx/nginx.conf.template b/nginx/nginx.conf.template index 43fe37f..12a87cd 100644 --- a/nginx/nginx.conf.template +++ b/nginx/nginx.conf.template @@ -28,6 +28,9 @@ http { listen 443 ssl; server_name $DOMAIN; + ssl_certificate /etc/letsencrypt/live/$DOMAIN/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/$DOMAIN/privkey.pem; + return 301 https://www.$DOMAIN$request_uri; }