added nginx.conf

This commit is contained in:
2025-06-01 03:24:54 +02:00
parent a94d6d6b1d
commit db0fe61673
2 changed files with 11 additions and 25 deletions

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 8097;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}