fix: office24.omnl.org -> office24.omdnl.org in domain manifest and nginx
Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m31s
CI/CD Pipeline / Security Scanning (push) Successful in 3m58s
CI/CD Pipeline / Lint and Format (push) Failing after 52s
CI/CD Pipeline / Terraform Validation (push) Failing after 31s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 36s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 54s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 33s
Validation / validate-genesis (push) Successful in 37s
Validation / validate-terraform (push) Failing after 37s
Validation / validate-kubernetes (push) Failing after 14s
Validation / validate-smart-contracts (push) Failing after 11s
Validation / validate-security (push) Failing after 1m58s
Validation / validate-documentation (push) Failing after 21s
Verify Deployment / Verify Deployment (push) Failing after 1m8s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-28 13:43:21 -07:00
parent f743a156a7
commit d68e5e5eca
4 changed files with 51 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ check_host() {
check_host exchange.omdnl.org /trade
check_host secure.d-bis.org /central-bank
check_host office24.omnl.org /office-24
check_host office24.omdnl.org /office-24
check_host digital.omdnl.org /swap
log "OMNL domain deploy complete"

View File

@@ -0,0 +1,47 @@
#!/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 Digital swap (/swap)
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://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