DNS Management

VeloxaHost is an authoritative DNS provider — manage all your domain's records directly from the console or API.

Add a Domain

  1. Go to Networking → DNS → Add Domain
  2. Enter your domain name (e.g., example.com)
  3. VeloxaHost creates the zone automatically
  4. Update your domain registrar's nameservers to:
    ns1.veloxahost.com   ns2.veloxahost.com
ℹ️

DNS propagation after updating nameservers typically takes 15 minutes to 48 hours depending on your registrar's TTL.

Supported Record Types

TypeUse case
AMap hostname → IPv4 (e.g., your instance IP or Floating IP)
AAAAMap hostname → IPv6
CNAMEAlias hostname → another hostname
MXMail server routing
TXTSPF, DKIM, domain verification
NSDelegate a subdomain to another nameserver
SRVService location (XMPP, SIP, etc.)
CAARestrict 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.

Related