bug fix nginx config

This commit is contained in:
2026-05-06 19:20:03 +02:00
parent 3d3437e0c6
commit 6e47324b98
2 changed files with 1 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
http {
include mime.types;
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}
event {}