Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there @carstenh,
Are your running this insde a Docker container or directly on your host?
I could suggest a couple of things here:
netstat to check if your service is binded on localhost only:netstat -plant | grep 3050
If the output that you get looks like thins:
tcp 0 0 127.0.0.1:3050 0.0.0.0:* LISTEN -
Then you need to make sure that you update your config to bind on 0.0.0.0:3050 instead.
0.0.0.0:3050 is to setup an Nginx reverse proxy and forward the traffic from port 80 to port 3050.You can do that by following the steps here:
Note yo only need to follow the “Set Up Nginx as a Reverse Proxy Server” step.
Hope that this helps! Regards, Bobby