From 6a3f68c76b24c89653a3bf36e74096201cf2101b Mon Sep 17 00:00:00 2001 From: SysAdmin Agent Date: Sun, 5 Apr 2026 19:22:42 +0000 Subject: [PATCH] Fix nginx: use subdomain SSL cert path for ahnenforschung.vhtv-stiftung.de (STI-91) Point the GrampsWeb subdomain server block to the correct certbot certificate at /etc/letsencrypt/live/ahnenforschung.vhtv-stiftung.de/ instead of the main domain cert. Co-Authored-By: Paperclip --- deploy-production/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy-production/nginx.conf b/deploy-production/nginx.conf index 00827f3..5f08ad4 100644 --- a/deploy-production/nginx.conf +++ b/deploy-production/nginx.conf @@ -105,9 +105,9 @@ server { listen 443 ssl http2; server_name ahnenforschung.vhtv-stiftung.de; - # SSL — will be updated by certbot after first run - ssl_certificate /etc/letsencrypt/live/vhtv-stiftung.de/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/vhtv-stiftung.de/privkey.pem; + # SSL Certificate for subdomain + ssl_certificate /etc/letsencrypt/live/ahnenforschung.vhtv-stiftung.de/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/ahnenforschung.vhtv-stiftung.de/privkey.pem; # SSL Security Settings ssl_protocols TLSv1.2 TLSv1.3;