From 5545271322ae2d2e757ae5b37510eefc9604295e Mon Sep 17 00:00:00 2001 From: Carter Date: Thu, 5 Jun 2025 10:23:13 -0600 Subject: [PATCH] trying nginx conf change-up --- nginx.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index adb8457..13da466 100644 --- a/nginx.conf +++ b/nginx.conf @@ -55,13 +55,17 @@ http { listen 80; listen [::]:80; + root /usr/share/nginx/html; + index indexV2.html; + access_log /dev/stdout; error_log /dev/stderr error; expires $cache_expires; - root /usr/share/nginx/html; - try_files $uri /indexV2.html; + location / { + try_files $uri /indexV2.html; + } location = /index.html { return 301 /indexV2.html;