Out Plane
Troubleshooting

Port Not Detected

The application is running but its URL returns no response.

If your app shows as Running but its URL times out or returns nothing, the platform cannot reach it on the expected port.

Checklist

Bind to 0.0.0.0

An app that listens on localhost is unreachable. Listen on 0.0.0.0.

Match the Port

The port your app listens on must match the port you exposed in Networking. Reading a PORT variable with a sensible default keeps the two in sync.

Make the Port Public

To reach the app from the internet, the port must be marked Public. A public HTTP or H2C port gets an HTTPS URL.

Use the Right Protocol

Use HTTP or H2C for web traffic. A TCP port is not served over the outplane.app URL and cannot take a custom domain.

Port changes apply on the next deployment.

On this page