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.
Hello, you can create “internal services” by using internal_ports property in the app spec and without having an http_port property.
name: sample-golang
services:
- name: intsvc1
github:
repo: digitalocean/sample-golang
branch: master
internal_ports:
- 3000
The internal service should be addressable with just the component name, example http://intsvc1:3000. Here’s a quick and simple example repo with code and app spec that demonstrates the concepts.
So in you setup, the tileserver component should be a service that exposes port using internal_ports property, and the nginx config can proxy pass to that address as appropriate.
Hopefully this helps!