From aeb945119a6e450504695d06b8ccc493a0636e25 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 25 Apr 2021 20:39:24 +0200 Subject: [PATCH] Fix showing blog list page --- nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx.conf b/nginx.conf index 4088214..724d020 100644 --- a/nginx.conf +++ b/nginx.conf @@ -62,6 +62,11 @@ http { error_page 500 502 503 504 /50x.html; } + location = /blog/ { + root /usr/share/nginx/html; + index /blog/post/index.html; + } + location = /50x.html { root /usr/share/nginx/html; }