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,
Just to confirm, when you say “frontend app”, is it a static site or a client-side JavaScript app that runs in the browser? If so, it won’t be able to reach your backend through the private VPC IP (10.x.x.x) since those addresses are only accessible inside the platform’s private network. In that case, you’ll need to expose the backend through a public endpoint and have the frontend call that.
If both apps are actually backend services deployed on App Platform within the same VPC, then internal routing should work, but the best approach is to group them as service components under the same app. That automatically handles private communication without having to manage IPs manually:
You can check out the official guide here: https://docs.digitalocean.com/products/app-platform/how-to/manage-internal-routing/
Could you share a bit more about how the frontend is deployed and how you’re trying to make the connection?