From c107b1aed932050995d8246066a96ade41e55aad Mon Sep 17 00:00:00 2001 From: Neeldhara Misra Date: Sun, 14 Jun 2026 01:08:16 +0200 Subject: [PATCH] Serve pretty blog post URLs in nginx --- deploy/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/nginx.conf b/deploy/nginx.conf index b32f98d..ed31e07 100644 --- a/deploy/nginx.conf +++ b/deploy/nginx.conf @@ -19,6 +19,6 @@ server { } location / { - try_files $uri $uri/index.html /index.html /404.html; + try_files $uri $uri/index.html /blog$uri/index.html /404.html; } }