From 45ed88a3cdf84876c249e93002fe53482586ea60 Mon Sep 17 00:00:00 2001 From: Neon Vortex Date: Fri, 21 Nov 2025 20:03:28 -0500 Subject: [PATCH] Fix nginx config for index file with spaces --- htlm/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htlm/nginx.conf b/htlm/nginx.conf index 80630f6..afb9310 100644 --- a/htlm/nginx.conf +++ b/htlm/nginx.conf @@ -3,7 +3,7 @@ server { server_name _; root /usr/share/nginx/html; - index Neon\ Vortex.html; + index "Neon Vortex.html"; # Enable gzip compression gzip on; @@ -29,7 +29,7 @@ server { add_header Cross-Origin-Opener-Policy "same-origin" always; location / { - try_files $uri $uri/ /Neon\ Vortex.html; + try_files $uri $uri/ "/Neon Vortex.html"; } # Cache static assets