streaming-data-dashboard/nginx.conf
2026-06-08 07:54:36 +08:00

21 lines
No EOL
500 B
Nginx Configuration File

server {
listen 80;
# 1. Handle the path Traefik is routing
location /lab/data-dashboard/ {
alias /usr/share/nginx/html/;
try_files $uri $uri/ /index.html;
}
# 2. Add an explicit health check endpoint (returns 200 OK)
location /health {
return 200 'healthy';
add_header Content-Type text/plain;
}
# 3. Fallback for SPA routing
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}