From 58bbf07690317c8086a33db1e1870dbfefec5679 Mon Sep 17 00:00:00 2001 From: Carter Date: Wed, 15 Oct 2025 13:40:13 -0600 Subject: [PATCH] thing --- nginx.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nginx.conf b/nginx.conf index 1537b32..4411199 100644 --- a/nginx.conf +++ b/nginx.conf @@ -78,18 +78,18 @@ http { } # Redirect old /index.html requests to new file - location = /index.html { - return 301 /indexV2.html; - } + # location = /index.html { + # return 301 /indexV2.html; + # } # Serve indexV2.html directly without redirect loop - location = /indexV2.html { + location = /index.html { root /usr/share/nginx/html; } # Fallback for SPA routing — all unmatched routes go to indexV2.html location / { - try_files $uri /indexV2.html; + try_files $uri /index.html; } }