Merge branch 'main' into main

This commit is contained in:
CuteDog5695
2024-10-30 14:26:55 +02:00
committed by GitHub
6 changed files with 23 additions and 7 deletions
+5
View File
@@ -30,3 +30,8 @@ jobs:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
with:
args: push
- name: Trigger URL Webhook
env:
WEBHOOK_URL: ${{ secrets.URL_WEBHOOK }}
run: curl -X GET "$WEBHOOK_URL"
+1 -1
View File
@@ -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 |
+4 -3
View File
@@ -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) {
commit.push(A(subdomainName, "192.0.2.1", { cloudflare_proxy: "on" }));
commit.push(A(subdomainName, IP("192.0.2.1"), { cloudflare_proxy: "on" }));
}
}
@@ -106,7 +106,8 @@ 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
D("is-a.dev", NewRegistrar("none"), DnsProvider(NewDnsProvider("cloudflare", { "manage_single_redirects": true })), commit);
D("is-a.dev", NewRegistrar("none"), DnsProvider(NewDnsProvider("cloudflare")), commit);
@@ -1,9 +1,9 @@
{
"owner": {
"username": "opulentloop",
"username": "mysticdebjit",
"email": "debjitmandal8925@gmail.com"
},
"record": {
"CNAME": "opulentloop.github.io"
"CNAME": "mysticdebjit.github.io"
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"owner": {
"username": "wdhdev",
"email": "william@is-a.dev"
},
"record": {
"URL": "https://william.is-a.dev"
}
}
+1 -1
View File
@@ -5,6 +5,6 @@
},
"record": {
"NS": ["chuck.ns.cloudflare.com", "walk.ns.cloudflare.com"]
"NS": ["bingo.ns.cloudflare.com", "matias.ns.cloudflare.com"]
}
}