fix: do not suggest both an A and CNAME record (#671)

I think this was a copy-paste error. But you cannot have both A and CNAME records on the same name. Only A/AAAA/TXT are the records needed here.

Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/671
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: kevinhikaruevans <kevinhikaruevans@noreply.codeberg.org>
Co-committed-by: kevinhikaruevans <kevinhikaruevans@noreply.codeberg.org>
This commit is contained in:
kevinhikaruevans 2025-09-14 13:28:09 +02:00 committed by Gusted
parent 83ac61e9a8
commit a4e80b85a7

View file

@ -188,7 +188,7 @@ If your service provider does not support `ALIAS records` you can also use `A re
and an `AAAA record` for IPv6 which contains the ip address of the Codeberg Pages server. The servers' ip addresses are:
- `A record` which contains the IPv4 value `217.197.84.141`
- `AAAA record` which contains the IPv6 value `2a0a:4580:103f:c0de::2`
- Second, you need to setup a `TXT record` which contains the information from the `CNAME entry` which is your repository
- Second, you need to setup a `TXT record` which contains the information of your repository
location as mentioned above. For example `[[branch.]repo.]user.codeberg.page`.
In the end, it should look like this:
@ -215,11 +215,6 @@ In the end, it should look like this:
<td>TXT</td>
<td>reponame.username.codeberg.page</td>
</tr>
<tr>
<td>www.yourdomain.com</td>
<td>CNAME</td>
<td>reponame.username.codeberg.page</td>
</tr>
</tbody>
</table>