minesweeper-frontend/nginx.conf
Jose134 22a304907e
Some checks failed
gitea/minesweeper-frontend/pipeline/head There was a failure building this commit
Fix deployment
2025-01-22 15:32:52 +01:00

15 lines
294 B
Nginx Configuration File

server {
listen 5173;
root /usr/share/nginx/html;
index index.html;
etag on;
location / {
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}