Help & FAQ
Plain-language answers for managing DNS on your Avian name.
A record
Points a hostname at an IPv4 address (e.g. 203.0.113.20). Use this if your host gives you a plain numeric IP address to point at.
AAAA record
The same idea as an A record, but for an IPv6 address (e.g. 2001:db8::1) instead of an IPv4 one. Only use this if your host specifically gave you an IPv6 address.
CNAME record
Points a hostname at another hostname instead of an IP address - e.g. pointing www at your-site.github.io. Most hosting providers (GitHub Pages, Vercel, Netlify) give you a hostname to use as a CNAME target. A hostname can have A/AAAA records or a single CNAME, but never both at once.
To get a free SSL certificate (so your site shows the padlock/https), certificate authorities like Let's Encrypt need proof that you actually control the domain. Tools like Certbot do this with a "DNS-01 challenge": they ask you to publish a specific, random text value in a TXT record under _acme-challenge, then check that it's there.
The "Add SSL Challenge" button creates that TXT record for you - paste in the value your ACME client (Certbot, etc.) gives you, save, and let the client continue. These records are temporary and expire automatically; you don't need to remember to clean them up.