Hello,
with this configuration I have been working since the first day without problems. But today I have seen that if I update my project no longer works because it gives 404. I have seen that they have changed the endpoint names. I tried to change /stream to /_stcore/stream but it still doesn’t work. Do you know what more changes I should do in my Nginx config?
location / {
proxy_pass http://localhost:8501/dashboard;
}
location /dashboard {
proxy_pass http://localhost:8501/dashboard;
}
location ^~ /static {
proxy_pass http://127.0.0.1:8501/dashboard/static;
}
location ^~ /healthz {
proxy_pass http://127.0.0.1:8501/dashboard/healthz;
}
location ^~ /vendor {
proxy_pass http://127.0.0.1:8501/dashboard/vendor;
}
location /dashboard/stream {
proxy_pass http://localhost:8501/dashboard/stream;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
}
Thank you very much.
Best regards.