From af4af18caa8aea9b4cbfe4d85a9de61c42d37a93 Mon Sep 17 00:00:00 2001 From: StepanovPlaton Date: Tue, 3 Feb 2026 03:08:00 +0400 Subject: [PATCH] Fix nginx conf --- nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 877de56..3c73da5 100644 --- a/nginx.conf +++ b/nginx.conf @@ -8,8 +8,9 @@ server { return 301 $1/; } + # Main location location / { - try_files $uri $uri/ $uri.html /index.html; + try_files $uri $uri/ $uri.html; } error_page 404 /404.html;