1
0

Update ssl paths to keys in nginx config

This commit is contained in:
PA4KEV 2023-02-07 22:48:26 +01:00
parent fa5b73ba15
commit 6d615a6977

View File

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