diff --git a/MAINTAINERS.md b/MAINTAINERS.md index cb300be61..3c503188b 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -7,5 +7,5 @@ | Daniel | [@hackermondev](https://github.com/hackermondev) | Maintainer | | DIBSTER | [@DEV-DIBSTER](https://github.com/DEV-DIBSTER) | Maintainer | | Om | [@omsenjalia](https://github.com/omsenjalia) | Maintainer | -| orangc | [@orxngc](https://github.com/orxngc) | Maintainer | +| orangc | [@orangci](https://github.com/orangci) | Maintainer | | Stef | [@Stef-00012](https://github.com/Stef-00012) | Maintainer | diff --git a/README.md b/README.md index 372768e87..09d67c9c5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ +# Temporary Downtime +Hey all, there is a temporary downtime for all subdomains as we migrate the is-a.dev zone to a different Cloudflare account. + +Sorry for any inconvenience. All subdomains temporarily will redirect to https://is-a.dev. + +--- +

is-a.dev Banner

diff --git a/dnsconfig.js b/dnsconfig.js index ee0eec18d..e292badeb 100644 --- a/dnsconfig.js +++ b/dnsconfig.js @@ -60,7 +60,7 @@ for (var subdomain in domains) { // Handle MX records if (domainData.record.MX) { for (var mx in domainData.record.MX) { - commit.push(MX(subdomainName, 10, domainData.record.MX[mx] + ".")); + commit.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".")); } } @@ -92,7 +92,7 @@ for (var subdomain in domains) { // Handle URL records if (domainData.record.URL) { - // Temporarily disabled + commit.push(A(subdomainName, IP("192.0.2.1"), { cloudflare_proxy: "on" })); } } @@ -106,6 +106,7 @@ commit.push(IGNORE("_dmarc", "TXT")); commit.push(IGNORE("_psl", "TXT")); commit.push(IGNORE("autoconfig", "CNAME")); commit.push(IGNORE("autodiscover", "CNAME")); +commit.push(IGNORE("internal", "DS,NS")); commit.push(IGNORE("ns[1-5]", "A,AAAA")); // Commit all DNS records diff --git a/domains/w.json b/domains/w.json new file mode 100644 index 000000000..87c47b82a --- /dev/null +++ b/domains/w.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "wdhdev", + "email": "william@is-a.dev" + }, + + "record": { + "URL": "https://william.is-a.dev" + } +}