michals-silly-game-frontend/nginx.conf
2025-04-16 15:17:36 +02:00

10 lines
No EOL
202 B
Nginx Configuration File

server {
listen 80;
server_name _;
location /silly-game {
root /usr/share/nginx/html/browser;
index index.html index.html;
try_files $uri $uri/ /index.html;
}
}