From c45b41677a03a25a1805335fa349ee72b3728c93 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sat, 30 Sep 2023 12:43:46 +1000 Subject: [PATCH] nginx: Fix 404 location --- nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/nginx.conf b/nginx.conf index 470b009..46512d2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -17,6 +17,7 @@ server { # Custom 404 page error_page 404 /404.html; + root /usr/share/nginx/html; location = /404.html { }