Files
podsteadr-player/nginx.conf
T

12 lines
264 B
Nginx Configuration File
Raw Normal View History

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