kv-music/nginx.conf
2026-03-14 15:17:25 -03:00

15 lines
298 B
Nginx Configuration File

server {
listen 4173;
listen [::]:4173;
root /usr/share/nginx/html;
index index.html;
location ~* \.(?:css|js|mjs|map|json|wasm|mp3|flac|png|jpg|jpeg|svg|webp|ico|gz|br)$ {
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.html;
}
}