streaming-data-dashboard/nginx.conf
2026-06-08 07:49:46 +08:00

9 lines
No EOL
220 B
Nginx Configuration File

server {
listen 80;
# Redirect traffic from /lab/data-dashboard/ to your index.html
location /lab/data-dashboard/ {
alias /usr/share/nginx/html/;
try_files $uri $uri/ /index.html;
}
}