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
This commit is contained in:
defiQUG
2026-03-27 00:31:14 -07:00
parent a36ccbbd77
commit 50a3973662
3 changed files with 3 additions and 1 deletions

View File

@@ -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

View File

@@ -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++))

View File

@@ -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"
)