fix: nginx query parameter redirect works like node.js

This commit is contained in:
Mitchell Scott 2025-10-20 11:42:42 -06:00
commit bca9376edc
No known key found for this signature in database
2 changed files with 38 additions and 2 deletions

View file

@ -10,8 +10,10 @@ server {
add_header X-Weatherstar true always;
include /etc/nginx/includes/wsqs_redirect.conf;
location / {
index redirect.html index.html index.htm;
index index.html index.htm;
try_files $uri $uri/ =404;
}