From 50a397366257924cb91385b1d87b89f50d660d4b Mon Sep 17 00:00:00 2001 From: defiQUG Date: Fri, 27 Mar 2026 00:31:14 -0700 Subject: [PATCH] DNS/scripts: include www.the-order.sankofa.nexus in zone lists and NPM cleanup - export-cloudflare-dns-records.sh: baseline DOMAIN_ZONES entry - update-all-dns-to-public-ip.sh: Cloudflare name www.the-order for sankofa.nexus zone - cleanup-npmplus-duplicate-certificates.sh: SANKOFA_DOMAINS for LE grouping Made-with: Cursor --- scripts/cleanup-npmplus-duplicate-certificates.sh | 2 +- scripts/update-all-dns-to-public-ip.sh | 1 + scripts/verify/export-cloudflare-dns-records.sh | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/cleanup-npmplus-duplicate-certificates.sh b/scripts/cleanup-npmplus-duplicate-certificates.sh index 21fdb73..b99a493 100755 --- a/scripts/cleanup-npmplus-duplicate-certificates.sh +++ b/scripts/cleanup-npmplus-duplicate-certificates.sh @@ -121,7 +121,7 @@ echo "$ACTIVE_CERTS" | while IFS='|' read -r cert_id domain_names; do done # Check for duplicates in sankofa.nexus domains -SANKOFA_DOMAINS="sankofa.nexus,www.sankofa.nexus,phoenix.sankofa.nexus,www.phoenix.sankofa.nexus,the-order.sankofa.nexus" +SANKOFA_DOMAINS="sankofa.nexus,www.sankofa.nexus,phoenix.sankofa.nexus,www.phoenix.sankofa.nexus,the-order.sankofa.nexus,www.the-order.sankofa.nexus" SANKOFA_CERTS=$(echo "$CERT_JSON" | jq -r ".[] | select(.is_deleted == 0) | select(.domain_names | tostring | test(\"sankofa.nexus\")) | .id" 2>/dev/null || echo "") if [ -n "$SANKOFA_CERTS" ]; then diff --git a/scripts/update-all-dns-to-public-ip.sh b/scripts/update-all-dns-to-public-ip.sh index 01ce931..960cecc 100755 --- a/scripts/update-all-dns-to-public-ip.sh +++ b/scripts/update-all-dns-to-public-ip.sh @@ -268,6 +268,7 @@ main() { "phoenix" # phoenix.sankofa.nexus "www.phoenix" # www.phoenix.sankofa.nexus "the-order" # the-order.sankofa.nexus + "www.the-order" # www.the-order.sankofa.nexus ) if ! process_zone "$ZONE_SANKOFA_NEXUS" "sankofa.nexus" "${SANKOFA_RECORDS[@]}"; then ((total_failures++)) diff --git a/scripts/verify/export-cloudflare-dns-records.sh b/scripts/verify/export-cloudflare-dns-records.sh index 0305b1a..2638f0c 100755 --- a/scripts/verify/export-cloudflare-dns-records.sh +++ b/scripts/verify/export-cloudflare-dns-records.sh @@ -55,6 +55,7 @@ declare -A DOMAIN_ZONES=( ["phoenix.sankofa.nexus"]="sankofa.nexus" ["www.phoenix.sankofa.nexus"]="sankofa.nexus" ["the-order.sankofa.nexus"]="sankofa.nexus" + ["www.the-order.sankofa.nexus"]="sankofa.nexus" ["studio.sankofa.nexus"]="sankofa.nexus" ["rpc.public-0138.defi-oracle.io"]="defi-oracle.io" )