From 13ba00ba55c5e2a632d3d320cdbf7c57af0a7b16 Mon Sep 17 00:00:00 2001 From: William Harrison Date: Sat, 19 Oct 2024 18:06:27 +0800 Subject: [PATCH 1/3] chore: ignore all DS records --- dnsconfig.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dnsconfig.js b/dnsconfig.js index de4185f6c..227c56f39 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -95,6 +95,8 @@ for (var subdomain in domains) { } // Exceptions +// * +commit.push(IGNORE("*", "DS", "*"); // is-a.dev commit.push(IGNORE("@", "MX")); commit.push(IGNORE("@", "TXT")); From 06115bc311f38943e1ffc552998341174ae9cf4d Mon Sep 17 00:00:00 2001 From: William Harrison Date: Sat, 19 Oct 2024 18:08:12 +0800 Subject: [PATCH 2/3] fix missing bracket --- dnsconfig.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnsconfig.js b/dnsconfig.js index 227c56f39..4434106f4 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -96,7 +96,7 @@ for (var subdomain in domains) { // Exceptions // * -commit.push(IGNORE("*", "DS", "*"); +commit.push(IGNORE("*", "DS", "*")); // is-a.dev commit.push(IGNORE("@", "MX")); commit.push(IGNORE("@", "TXT")); From 7d2a3043fb948a68ae4931c514e9c73a81f7d639 Mon Sep 17 00:00:00 2001 From: William Harrison Date: Sat, 19 Oct 2024 18:10:23 +0800 Subject: [PATCH 3/3] subdomain, not full domain --- dnsconfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnsconfig.js b/dnsconfig.js index 4434106f4..11d506388 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -119,8 +119,8 @@ commit.push(IGNORE("ns3", "AAAA")); commit.push(IGNORE("ns4", "A")); commit.push(IGNORE("ns4", "AAAA")); // test.is-a.dev -commit.push(IGNORE("test.is-a.dev")); -commit.push(IGNORE("**.test.is-a.dev")); +commit.push(IGNORE("test")); +commit.push(IGNORE("**.test")); // Commit all DNS records D("is-a.dev", NewRegistrar("none"), DnsProvider(NewDnsProvider("cloudflare", { "manage_single_redirects": true })), commit);