bug fix nginx config

This commit is contained in:
2026-05-06 19:23:51 +02:00
parent 9ef863a34c
commit 1aea4050e7
+7 -12
View File
@@ -1,16 +1,11 @@
http { server {
include mime.types; listen 80;
server_name localhost;
server { root /usr/share/nginx/html;
listen 80; index index.html;
root /usr/share/nginx/html;
index index.html; location / {
try_files $uri $uri/ /index.html;
location / {
try_files $uri $uri/ /index.html;
}
} }
} }
event {}