NovaCloud-Hosting Docs

DNS Management

Add, edit and remove DNS records for a domain.

DNS records control where your domain points and which services are allowed to use it. You can manage the DNS zone in the dashboard when the domain uses our nameservers.

If your domain uses external nameservers, change the DNS records at the external DNS provider instead. Records configured in our dashboard are only authoritative while our nameservers are active for the domain.

Common record types

TypeUse caseExample value
APoint a hostname to an IPv4 address.203.0.113.10
AAAAPoint a hostname to an IPv6 address.2001:db8::10
CNAMECreate an alias to another hostname.web.example.com
MXConfigure mail servers for the domain.10 mail.example.com
TXTStore verification, SPF, DKIM or DMARC data.v=spf1 mx ~all
SRVPublish service location details._minecraft._tcp.example.com
CAARestrict which certificate authorities may issue certificates.0 issue "letsencrypt.org"

Add or edit a DNS record

  1. Open the domain in the dashboard.
  2. Open the DNS or records area for the domain.
  3. Choose whether you want to add a new record or edit an existing one.
  4. Select the record type.
  5. Enter the hostname, target value and TTL.
  6. Save the record.
  7. Test the result after the TTL has expired.

Hostname field

Use the hostname field to define which name the record belongs to:

HostnameResult
@ or emptyThe root domain, for example example.com
wwwwww.example.com
mailmail.example.com
_dmarc_dmarc.example.com

Do not add the domain twice. If the dashboard already appends the domain name, enter www instead of www.example.com.

Important DNS notes

  • A CNAME record cannot normally be used together with other records on the same hostname.
  • The root domain usually needs A and AAAA records instead of a CNAME record.
  • MX records need a priority. Lower values have higher priority.
  • Mail-related TXT records must match the exact value provided by your mail provider.
  • DNS changes are not instant. Resolvers can keep old answers until the previous TTL expires.

Verify DNS records

You can check DNS records with public DNS tools or from a terminal:

dig example.com A
dig www.example.com CNAME
dig example.com MX
dig example.com TXT

On Windows PowerShell, you can use:

Resolve-DnsName example.com -Type A
Resolve-DnsName example.com -Type MX

If a record still shows the old value, wait for the TTL to expire and test again with a different resolver.

On this page