festa-magica-ia/nginx.conf

12 lines
172 B
Nginx Configuration File
Raw Normal View History

2026-05-10 22:46:49 +00:00
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}