Custom Domains
Use your own domain with automatic SSL.
Add a custom domain
Attach a custom domain to any deployed project:
hatch domains add example.com --project my-appCustom domains are available on Always On and Team plans.
DNS setup
Point your domain to Hatch by adding a CNAME record at your DNS provider:
| Type | Name | Value |
|---|---|---|
| CNAME | @ | cname.hatch.sh |
| CNAME | www | cname.hatch.sh |
For apex domains (no subdomain), some DNS providers require an ALIAS or ANAME record instead of CNAME.
SSL auto-provisioning
SSL certificates are provisioned and renewed automatically via Let's Encrypt. Once your DNS records are configured, HTTPS is enabled within minutes. No manual certificate management required.
Manage domains
List and remove custom domains:
# List all domains for a project
hatch domains list --project my-app
# Remove a domain
hatch domains remove example.com --project my-app