big-football-5446
11/28/2023, 11:11 PMserver {
listen 8083;
location / {
proxy_pass <http://localhost:1234>;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
Is there some environment variable or something I can set somewhere so that the ui tries 1234 instead of 8083?
Ive tried setting METAFLOW_SERVICE_PROXY="<http://127.0.0.1:1234>"
on the k8s that runs the ui backend but no luck.
Thanks for the help