diff --git a/blog/how-i-deploy-with-nginx.qmd b/blog/how-i-deploy-with-nginx.qmd index 1ab4ff5..2286fd3 100644 --- a/blog/how-i-deploy-with-nginx.qmd +++ b/blog/how-i-deploy-with-nginx.qmd @@ -66,13 +66,13 @@ server { ssl_certificate /etc/letsencrypt/live/limbo.jpace121.net/fullchain.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 { alias /var/www/limbo.jpace121.net/.well-known; } - - location / { - root /var/www/limbo.jpace121.net/; - } } ```