Domains
Custom domain names for your applications. Launcher handles TLS certificate provisioning automatically.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /api/v1/applications/:appId/domains | List domains for an application |
POST | /api/v1/applications/:appId/domains | Add a custom domain |
GET | /api/v1/domains/:id | Get domain by ID |
DELETE | /api/v1/domains/:id | Remove a custom domain |
POST | /api/v1/domains/:id/verify | Verify DNS configuration |
POST /api/v1/applications/:appId/domains
{
"hostname": "api.example.com",
"path": "/",
"targetPort": 3000,
"https": true
}After adding a domain, configure your DNS to point to the server and use the verify endpoint to confirm the setup.
Last updated on