Fix nginx: use subdomain SSL cert path for ahnenforschung.vhtv-stiftung.de (STI-91)
Some checks failed
CI/CD Pipeline / test (push) Has been cancelled
CI/CD Pipeline / deploy (push) Has been cancelled
Code Quality / quality (push) Has been cancelled

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 <noreply@paperclip.ing>
This commit is contained in:
SysAdmin Agent
2026-04-05 19:22:42 +00:00
parent 8de3106596
commit 6a3f68c76b

View File

@@ -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;