From 36238a8e87864c88927a015d6930a9716ca94e45 Mon Sep 17 00:00:00 2001 From: tobias Date: Mon, 15 Jul 2024 18:24:55 +0200 Subject: [PATCH] Add .html to uri in nginx --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 014ad92..ed91c39 100644 --- a/nginx.conf +++ b/nginx.conf @@ -17,7 +17,7 @@ http { location / { root /usr/share/nginx/html; - try_files $uri $uri/ =404; + try_files $uri $uri.html $uri/ =404; } location /error_page.html {