DNS Management
VeloxaHost is an authoritative DNS provider — manage all your domain's records directly from the console or API.
Add a Domain
- Go to Networking → DNS → Add Domain
- Enter your domain name (e.g.,
example.com) - VeloxaHost creates the zone automatically
- Update your domain registrar's nameservers to:
ns1.veloxahost.comns2.veloxahost.com
ℹ️
DNS propagation after updating nameservers typically takes 15 minutes to 48 hours depending on your registrar's TTL.
Supported Record Types
| Type | Use case |
|---|---|
| A | Map hostname → IPv4 (e.g., your instance IP or Floating IP) |
| AAAA | Map hostname → IPv6 |
| CNAME | Alias hostname → another hostname |
| MX | Mail server routing |
| TXT | SPF, DKIM, domain verification |
| NS | Delegate a subdomain to another nameserver |
| SRV | Service location (XMPP, SIP, etc.) |
| CAA | Restrict which CAs can issue certs for your domain |
Add a Record (API)
POST /v1/dns/zones/example.com/records
{
"type": "A",
"name": "@", // @ = root domain
"value": "203.0.113.42",
"ttl": 300
}
# Subdomain
{
"type": "A",
"name": "api", // api.example.com
"value": "203.0.113.43",
"ttl": 60
}
# CNAME
{
"type": "CNAME",
"name": "www",
"value": "example.com.",
"ttl": 300
}
Pricing
DNS management is included free for all VeloxaHost customers. There are no per-query charges.