Fix nginx issue.

This commit is contained in:
James Pace 2024-01-16 09:12:43 -05:00
parent 0e9efd6e3f
commit 53513e9137
1 changed files with 4 additions and 4 deletions

View File

@ -66,13 +66,13 @@ server {
ssl_certificate /etc/letsencrypt/live/limbo.jpace121.net/fullchain.pem; ssl_certificate /etc/letsencrypt/live/limbo.jpace121.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/limbo.jpace121.net/privkey.pem; ssl_certificate_key /etc/letsencrypt/live/limbo.jpace121.net/privkey.pem;
root /var/www/limbo.jpace121.net/;
location / {
try_files $uri /index.html;
}
location /.well-known { location /.well-known {
alias /var/www/limbo.jpace121.net/.well-known; alias /var/www/limbo.jpace121.net/.well-known;
} }
location / {
root /var/www/limbo.jpace121.net/;
}
} }
``` ```