From 6b67be86a194d0a34b066ea7d3d95737b98d246e Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Wed, 9 Jul 2025 17:06:23 -0400 Subject: [PATCH] chore(docs/manifest): branded 404 page Signed-off-by: Xe Iaso --- docs/manifest/cfg/nginx/nginx.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/manifest/cfg/nginx/nginx.conf b/docs/manifest/cfg/nginx/nginx.conf index 1c5dcc2..8ff13af 100644 --- a/docs/manifest/cfg/nginx/nginx.conf +++ b/docs/manifest/cfg/nginx/nginx.conf @@ -19,8 +19,10 @@ http { listen 80 default_server; server_name _; + error_page 404 /404.html; + root /www; - index index.html index.php; + index index.html; location / { try_files $uri $uri/ =404;