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
|
|
|
|
|
|
|
location / {
|
|
|
|
root /usr/share/nginx/html/browser; # This is crucial!
|
|
|
|
index index.html index.html;
|
2025-04-16 13:01:25 +00:00
|
|
|
rewrite ^/silly-game/(.*)$ /$1 break;
|
2025-04-07 10:48:29 +00:00
|
|
|
try_files $uri $uri/ /index.html; # For Angular routing
|
|
|
|
}
|
|
|
|
|
|
|
|
# Optional: Add other configurations like gzip, headers, etc.
|
|
|
|
}
|