Files
smom-dbis-138/scripts/deployment/print-omnl-dns-records.sh
zaragoza444 eaca1ee6ca
Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m16s
CI/CD Pipeline / Security Scanning (push) Successful in 2m52s
CI/CD Pipeline / Lint and Format (push) Failing after 46s
CI/CD Pipeline / Terraform Validation (push) Failing after 26s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 28s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 45s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 20s
Validation / validate-genesis (push) Successful in 32s
Validation / validate-terraform (push) Failing after 30s
Validation / validate-kubernetes (push) Failing after 11s
Validation / validate-smart-contracts (push) Failing after 11s
Validation / validate-security (push) Failing after 1m35s
Validation / validate-documentation (push) Failing after 22s
Verify Deployment / Verify Deployment (push) Failing after 1m4s
feat: separate Z Ecosystem onto zblockchainsystem.com
Move Z Chain, wallet, bot, swap, and Z Bank UI off OMNL domains with dedicated nginx vhost and production DNS config.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 00:57:29 -07:00

51 lines
1.9 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# Print Cloudflare/registrar DNS records for OMNL production domains.
# Origin server: dev-bis-ali @ 76.53.10.34 (nginx vhosts already deployed)
ORIGIN_IP="${OMNL_ORIGIN_IP:-76.53.10.34}"
PROXY="${OMNL_DNS_PROXY:-proxied}"
cat <<EOF
# OMNL production DNS — add these records in Cloudflare (or your registrar)
# Origin IP: $ORIGIN_IP
# Proxy: orange-cloud ON (recommended) for HTTPS at the edge
Zone: omdnl.org
Type Name Content Proxy Dashboard
A exchange $ORIGIN_IP yes DBIS Trade (/trade)
A secure $ORIGIN_IP yes Central Bank (/central-bank)
A online $ORIGIN_IP yes Online banking (/central-bank)
A forex $ORIGIN_IP yes Forex terminal (/trade)
A digital $ORIGIN_IP yes Legacy swap (/swap) — prefer zblockchainsystem.com
Zone: omdnl.org (Office 24)
Type Name Content Proxy Dashboard
A office24 $ORIGIN_IP yes Office 24 (/office-24)
Zone: d-bis.org
Type Name Content Proxy Notes
A exchange $ORIGIN_IP yes DBIS Trade (/trade)
A secure $ORIGIN_IP yes UPDATE — currently 76.53.10.36
A forex $ORIGIN_IP yes Forex terminal (/trade)
# Cloudflare SSL/TLS mode: Full (origin is HTTP on :80)
# After DNS propagates (115 min), verify:
# curl -sI https://exchange.omdnl.org/ | head -3
# curl -sI https://office24.omdnl.org/ | head -3
# curl -sI https://secure.d-bis.org/ | head -3
Live URLs once DNS is active:
https://exchange.omdnl.org/trade
https://secure.omdnl.org/central-bank
https://online.omdnl.org/central-bank
https://forex.omdnl.org/trade
https://digital.omdnl.org/swap
https://zblockchainsystem.com/z
https://zblockchainsystem.com/z-wallet
https://zblockchainsystem.com/swap
https://office24.omdnl.org/office-24
https://exchange.d-bis.org/trade
https://secure.d-bis.org/central-bank
https://forex.d-bis.org/trade
EOF