env workaround for static build

This commit is contained in:
Mitchell Scott 2025-06-13 14:33:06 -06:00
commit 6ff7122844
No known key found for this signature in database
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;
}