env workaround for static build

This commit is contained in:
Mitchell Scott
2025-06-13 14:33:06 -06:00
parent 9f94ef83ba
commit 6ff7122844
4 changed files with 49 additions and 2 deletions

View File

@@ -1,11 +1,11 @@
server {
listen 80;
listen 8080;
server_name localhost;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
index redirect.html index.html index.htm;
try_files $uri $uri/ =404;
}