dnscontrol: Add back the A record

Without an IPv4 address we seem to have trouble with some networks
being able to resolve our domain. We are not ready for IPv6 only
setting. This might also be creating problem of federating our
mastodon instance with other networks.

Would have loved to save 0.6 Euro on Hetzner by being IPv6 only.
This commit is contained in:
Sanchayan Maity 2023-01-23 08:48:05 +05:30
parent 3e5d0f0e13
commit bfb7b25fa6
Signed by: sanchayanmaity
GPG key ID: 6F6A0609C12038F3

View file

@ -16,6 +16,7 @@ var DNS_DESEC = NewDnsProvider('desec');
D('sanchayanmaity.net', REG_NONE, DnsProvider(DNS_DESEC),
DefaultTTL("1h"),
A('@', '157.90.118.14'),
AAAA("@", '2a01:4f8:1c1c:30e9::1'),
CAA("@", "issue", "letsencrypt.org"),
CNAME("git" , "sanchayanmaity.net."),
@ -47,6 +48,7 @@ D('sanchayanmaity.net', REG_NONE, DnsProvider(DNS_DESEC),
D('sanchayanmaity.com', REG_NONE, DnsProvider(DNS_DESEC),
DefaultTTL("1h"),
A('@', '157.90.118.14'),
AAAA("@", '2a01:4f8:1c1c:30e9::1'),
CAA("@", "issue", "letsencrypt.org"),
CNAME("git" , "sanchayanmaity.com."),