Custom Domains
Every BRICQS deployment gets a live HTTPS endpoint on bricqs.run automatically. You can also bind a custom domain — your own apex or subdomain — to any running deployment.
Default endpoint
Immediately after a deployment reaches running state, your model is reachable at:
https://<app-name>.bricqs.runThis endpoint is TLS-secured, globally accessible, and requires no DNS configuration on your end.
Adding a custom domain
Custom domains are managed from the deployment's Settings tab in the dashboard. The process:
DNS records
Subdomain (CNAME)
bashType: CNAME
Name: api (your chosen subdomain)
Value: <app-name>.bricqs.runApex domain (A record)
Apex domains require an A record pointing to the IP returned during domain setup. Some DNS providers support ANAME/ALIAS records — use those if available since they handle IP changes automatically.
Multiple domains
A single deployment can serve multiple custom domains. Each is independently verified and gets its own certificate. You might use this to serve both api.yourdomain.com and chat.yourdomain.com from the same running container.
Rebinding to a new deployment
To move a domain from one deployment to another (e.g. promoting a preview to production), remove the domain from the old deployment and add it to the new one. Certificate state is separate per binding — the new deployment gets its own certificate issued within minutes.