Add nginx.conf

This commit is contained in:
2026-08-10 12:34:22 +00:00
parent 56f91194bd
commit e4564dbcb3
+10
View File
@@ -0,0 +1,10 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}