2026-07-30 23:20:33 +00:00
|
|
|
server {
|
|
|
|
|
listen 8097;
|
|
|
|
|
server_name _;
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
|
|
|
|
# Pure client-side SPA — no server routes of its own, everything falls back to index.html.
|
|
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
}
|