michals-silly-game-frontend/nginx.conf
miwr 32301a1b4e
All checks were successful
ci / build (push) Successful in 1m19s
rewrite ^/silly-game/(.*)$ /$1 break;
2025-04-16 15:01:25 +02:00

13 lines
No EOL
345 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html/browser; # This is crucial!
index index.html index.html;
rewrite ^/silly-game/(.*)$ /$1 break;
try_files $uri $uri/ /index.html; # For Angular routing
}
# Optional: Add other configurations like gzip, headers, etc.
}