Files
smom-dbis-138/scripts/deployment/print-omnl-dns-records.sh
zaragoza444 d68e5e5eca
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
fix: office24.omnl.org -> office24.omdnl.org in domain manifest and nginx
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 13:43:21 -07:00

48 lines
1.8 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 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