Add nginx config

This commit is contained in:
2026-02-20 12:12:17 +00:00
parent 238f591674
commit e1cf259e75

8
nginx.conf Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}