michals-silly-game-frontend/nginx.conf

10 lines
202 B
Nginx Configuration File
Raw Normal View History

2025-04-07 10:48:29 +00:00
server {
listen 80;
2025-04-16 13:01:25 +00:00
server_name _;
2025-04-07 10:48:29 +00:00
2025-04-16 13:17:36 +00:00
location /silly-game {
root /usr/share/nginx/html/browser;
2025-04-07 10:48:29 +00:00
index index.html index.html;
2025-04-16 13:17:36 +00:00
try_files $uri $uri/ /index.html;
2025-04-07 10:48:29 +00:00
}
}