Custom domains
By default your changelog is served at https://launch.nordva.dev/log/<your-project-slug> and your widgets at https://widget.nordva.dev/.... On the Builder plan you can point your own subdomain (for example changelog.acme.com) at us via CNAME.
How it works
Section titled “How it works”We use Cloudflare for SaaS to terminate TLS for your hostname automatically. There is nothing to deploy on your side beyond a DNS record.
- In your DNS provider, create a CNAME:
changelog.acme.com. CNAME widget.nordva.dev. 3600- In the dashboard, go to
Project → Custom domainsand register the hostname:
curl -X POST https://api.nordva.dev/v1/projects/<project_id>/custom-domains \ -H "Authorization: Bearer sk_live_..." \ -H "Content-Type: application/json" \ -d '{ "hostname": "changelog.acme.com" }'- Cloudflare issues an SSL certificate within a few minutes. The dashboard shows status
activeonce it’s ready.
Limits
Section titled “Limits”| Plan | Custom hostnames per project |
|---|---|
| Free | 0 |
| Indie | 0 |
| Builder | 5 |
Reach HOSTNAME_ALREADY_REGISTERED (409)? The hostname is registered to a different Nordva Launch account. Use a different subdomain, or contact support if you believe it was registered in error.
Removing a hostname
Section titled “Removing a hostname”curl -X DELETE \ https://api.nordva.dev/v1/projects/<project_id>/custom-domains/<hostname_id> \ -H "Authorization: Bearer sk_live_..."Cloudflare removes the hostname binding immediately. Your DNS CNAME will start failing with an SSL_ERROR_NO_CYPHER_OVERLAP once removed — drop the record in your DNS provider too.