internal-freight-app/nginx.conf
2026-06-08 12:07:33 +00:00

19 lines
No EOL
404 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /health {
access_log off;
return 200 "OK";
add_header Content-Type text/plain;
}
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml;
}