fix: Correct examples for apex domain + www sub domain

Using a `cname` in these examples causes the domain dns resolve to fail.
This commit is contained in:
Moqodow 2026-05-21 00:06:01 +02:00
parent 0829806f6a
commit 115985e528

View file

@ -298,11 +298,11 @@ For the DNS configuration, CNAME records CANNOT be used for the apex domain, so:
_Note that ALIAS records are not real DNS records and are typically incompatible with DNSSEC signed zones._
- otherwise, A/AAAA records must be used, together with a TXT record:
- otherwise, A/AAAA records must be used, together with two TXT records:
- name `example.com`, type `A`, data `217.197.84.141`
- name `example.com`, type `AAAA`, data `2a0a:4580:103f:c0de::2`
- name `example.com`, type `TXT`, data `frida.codeberg.page`
- name `www.example.com`, type `CNAME`, data `frida.codeberg.page`
- name `www.example.com`, type `TXT`, data `frida.codeberg.page`
### Project site, subdomain
@ -359,8 +359,8 @@ For the DNS configuration, CNAME records CANNOT be used for the apex domain, so:
_Note that ALIAS records are not real DNS records and are typically incompatible with DNSSEC signed zones._
- otherwise, A/AAAA records must be used, together with one TXT record:
- otherwise, A/AAAA records must be used, together with two TXT records:
- name `example.com`, type `A`, data `217.197.84.141`
- name `example.com`, type `AAAA`, data `2a0a:4580:103f:c0de::2`
- name `example.com`, type `TXT`, data `colormix.frida.codeberg.page`
- name `www.example.com`, type `CNAME`, data `colormix.frida.codeberg.page`
- name `www.example.com`, type `TXT`, data `colormix.frida.codeberg.page`