From 6d615a6977d1c4c83b16355e2345be1e77f11ac0 Mon Sep 17 00:00:00 2001 From: PA4KEV Date: Tue, 7 Feb 2023 22:48:26 +0100 Subject: [PATCH] Update ssl paths to keys in nginx config --- config/nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/nginx/nginx.conf b/config/nginx/nginx.conf index 2b1df70..ae356af 100644 --- a/config/nginx/nginx.conf +++ b/config/nginx/nginx.conf @@ -15,8 +15,8 @@ server { # These two directives define the paths to the TLS certificate and secret key. # These will be provisioned using Certbot and mounted into the Nginx container in the next step. - ssl_certificate /etc/letsencrypt/live/matsubara.nl-0002/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/matsubara.nl-0002/privkey.pem; + ssl_certificate /etc/letsencrypt/live/matsubara.nl/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/matsubara.nl/privkey.pem; location / { root /usr/share/nginx/html;