Files
cdp/data-layer/console/nginx.conf
2026-05-25 08:38:26 +07:00

15 lines
271 B
Nginx Configuration File

server {
listen 4002;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /api/analytics/ {
rewrite ^/api/analytics/(.*)$ /$1 break;
proxy_pass http://api:4000;
}
}