Hi team :wave: Getting some metaflow_ui errors. Th...
# ask-metaflow
b
Hi team 👋 Getting some metaflow_ui errors. The ui loads however the data doesnt and gives generic error 500. Please see screenshot. The setup we have is the ui_backend service is on k8s which is linked to an aws service catalog machine via envoy and then thats linked to my browser with portforwarding. Its forwarded to 127.0.0.1:1234, however it seems the ui wants to load the data from 127.0.0.1:8083 I can get the data to load fine if I forward with nginx locally using this:
Copy code
server {
    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