michals-silly-game-frontend/nginx.conf

12 lines
307 B
Nginx Configuration File
Raw Normal View History

2025-04-07 10:48:29 +00:00
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html/browser; # This is crucial!
index index.html index.html;
try_files $uri $uri/ /index.html; # For Angular routing
}
# Optional: Add other configurations like gzip, headers, etc.
}