Core Concepts
Reference
How-to Guides
Troubleshooting
HTTP(S) Endpoints
HTTP(S) Endpoints can be created using the aptible endpoints:https:create command, and modified using the aptible endpoints:https:modify command.
Traffic
HTTP(S) Endpoints are ideal for web apps. They handle HTTPS termination (and optionally redirect HTTP traffic to HTTPS), and pass it on as HTTP traffic to your app Containers.
Container Port
When creating an HTTP Endpoint, you can specify the container port the traffic should be sent to. Different Endpoints can use different ports, even if they're associated with the same Service.
If you don't specify a port, Aptible will pick a default port for you. The default port Aptible picks is the lexicographically lowest port exposed by your Image. For example, if your Dockerfile contains EXPOSE 80 443
, then the default port would be 443
.
It's important to make sure your app is listening on the port the Endpoint will route traffic to, or clients won't be able to access your app.
Zero-Downtime Deployment
HTTP(S) Endpoints provide zero-downtime deployment: whenever you deploy or restart your App, Aptible will ensure that new containers are accepting traffic before terminating old containers.
📘 For more information on Aptible's deployment process, see Releases.
Keep reading: