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 @abuseofinnocent,
You’ll need to make your Nginx work as a reverse proxy. At the moment as far as I can see it’s not. Here is an example configuration file which uses connections to port 80 and uses a proxy to forward them to port 8000:
server {
listen 80;
server_name foobar.net www.foobar.net test.io www.test.io;
location / {
proxy_pass http://your_server_ip:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
You can add this in your configuration of the server block in your config.
Don’t forget to change foobar.net with your actual domain and proxy_pass http://your_server_ip:8000; with your IP Address.
Regards, KFSys