This commit is contained in:
Will Freeman
2024-10-02 18:52:44 -05:00
parent fd94bd3cee
commit b11a9ad313
2 changed files with 7 additions and 1 deletions

View File

@@ -21,7 +21,13 @@ http {
listen [::]:80;
server_name deflock.me www.deflock.me;
return 301 https://$host$request_uri;
location / {
return 301 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}
server {