trying nginx conf change-up

This commit is contained in:
Carter 2025-06-05 10:23:13 -06:00
parent 727a20292f
commit 5545271322

View file

@ -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;
location / {
try_files $uri /indexV2.html;
}
location = /index.html {
return 301 /indexV2.html;