minesweeper-frontend/nginx.conf
Jose134 e76d8589f0
All checks were successful
gitea/minesweeper-frontend/pipeline/head This commit looks good
Fix deployment
2025-01-22 12:31:18 +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;
}
}