vbytes_website/nginx/nginx.conf
Anna-Sara Sélea abb32911fe Docker setup
2025-10-30 14:06:41 +01:00

19 lines
No EOL
350 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /health {
return 200;
}
}