From ae281310f108c14fe986de2dc05871ed9bb5cb97 Mon Sep 17 00:00:00 2001 From: shahanneda Date: Fri, 1 Jul 2022 13:14:01 -0700 Subject: [PATCH] Fixed issue with non html path --- staging-nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging-nginx.conf b/staging-nginx.conf index 40b76cd..4e05092 100644 --- a/staging-nginx.conf +++ b/staging-nginx.conf @@ -3,7 +3,7 @@ server { location / { root /usr/share/nginx/html; index index.html index.htm; - try_files $uri $uri/ /index.html; + try_files $uri $uri/ $uri.html $uri.html/ /index.html; } error_page 404 /index.html; }