nginx fixes

This commit is contained in:
2025-12-08 16:46:33 -05:00
parent 3929b1197d
commit 54710a354f

View File

@@ -1,10 +1,12 @@
# nginx.conf
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
http {
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html;
}
location / {
try_files $uri $uri/ /index.html;
}
}
}