From edf5da485d67c675e664972a6b1b785d1b89f054 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 31 Jul 2023 17:35:30 +1000 Subject: [PATCH] nginx: Fix index errors --- default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.conf b/default.conf index 673a253..1e45ff4 100644 --- a/default.conf +++ b/default.conf @@ -5,7 +5,7 @@ server { location / { root /usr/share/nginx/html; index index.html index.htm; - try_files $uri $uri.html; + try_files $uri $uri.html /index.html; } error_page 500 502 503 504 /50x.html; location = /50x.html {