From bfb7b25fa64a24dce39b770c42ab867ca3c8f0f2 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Mon, 23 Jan 2023 08:48:05 +0530 Subject: [PATCH] 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. --- dnscontrol/dnsconfig.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dnscontrol/dnsconfig.js b/dnscontrol/dnsconfig.js index 17d7fa2..f3471f8 100644 --- a/dnscontrol/dnsconfig.js +++ b/dnscontrol/dnsconfig.js @@ -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."),