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; } }