Creepers supports seven DNS record types in theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/creepersbs/register/llms.txt
Use this file to discover all available pages before exploring further.
"record" object of your registration file: A, AAAA, CNAME, MX, NS, TXT, and SRV. You only need to include the types relevant to your use case — leave out any you do not need. Each type has a specific value format described below.
A — IPv4 address
AnA record maps your subdomain to one or more IPv4 addresses. The value is an array of strings, so you can list multiple IPs for basic load balancing or redundancy.
AAAA — IPv6 address
AnAAAA record maps your subdomain to one or more IPv6 addresses. Like A, the value is an array.
CNAME — canonical name (alias)
ACNAME record points your subdomain to another domain name instead of an IP address. The value is a single string, not an array.
MX — mail exchange
AnMX record specifies the mail servers responsible for receiving email for your subdomain. The value is an array of hostnames.
MX records require
"proxy": "false". Cloudflare proxy does not handle mail traffic.NS — name servers
AnNS record delegates DNS control of your subdomain to a set of name servers you manage. This is useful if you want to manage the DNS zone for your subdomain yourself using another provider. The value is an array of up to five name server hostnames.
NS records always bypass the Cloudflare proxy regardless of your
"proxy" setting. When you use NS records, you take full responsibility for the DNS configuration of your subdomain — CreeperHUB has no technical control over it.TXT — text records
ATXT record stores arbitrary text data. It is commonly used for domain ownership verification (e.g., Google Search Console, email authentication). The value is an array of strings, allowing multiple entries.
TXT is the only record type that can coexist alongside a CNAME for the same subdomain name.
SRV — service records
AnSRV record advertises the location of a specific service running on your subdomain. It is commonly used for Minecraft servers, VoIP services, and other non-HTTP protocols. The value is an array of objects, each describing one service endpoint.
Each SRV entry has the following fields:
| Field | Description |
|---|---|
content | The service and protocol identifier (e.g., _minecraft._tcp). |
priority | Lower values are preferred when multiple SRV records exist. |
weight | Used to distribute load among records with the same priority. |
ttl | Time to live. Set to "auto" to let Cloudflare manage it. |
port | The port your service listens on. |
target | The hostname of the server running the service. |
Choosing the right record type
Website or web app
Use
A or AAAA for servers you control directly, or CNAME for platforms like Netlify, Vercel, or GitHub Pages. Enable "proxy": "true" for HTTP/HTTPS traffic.Minecraft or game server
Use
SRV to advertise your server with a clean domain, paired with an A record. Set "proxy": "false".Use
MX records pointing to your mail provider’s servers. Set "proxy": "false".Self-managed DNS
Use
NS records to delegate the zone to your own provider. The proxy is bypassed automatically.