2025-11-04 20:53:28 +09:00

12 lines
184 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# SPA fallback (deep links work)
location / {
try_files $uri $uri/ /index.html;
}
}