Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m14s
CI/CD Pipeline / Security Scanning (push) Successful in 2m34s
CI/CD Pipeline / Lint and Format (push) Failing after 40s
CI/CD Pipeline / Terraform Validation (push) Failing after 24s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 26s
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 37s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 22s
Validation / validate-genesis (push) Successful in 24s
Validation / validate-terraform (push) Failing after 24s
Validation / validate-kubernetes (push) Failing after 9s
Validation / validate-smart-contracts (push) Failing after 10s
Validation / validate-security (push) Failing after 1m22s
Validation / validate-documentation (push) Failing after 17s
Verify Deployment / Verify Deployment (push) Failing after 47s
Add VITE_ECOSYSTEM build profiles, Z-only nginx vhosts, standalone Z production stack script, and remove Z Chain from OMNL registry. Co-authored-by: Cursor <cursoragent@cursor.com>
50 lines
1.0 KiB
Plaintext
50 lines
1.0 KiB
Plaintext
# Z Ecosystem — zblockchainsystem.com (Z Chain, Wallet, Bot, Swap, Z Bank)
|
|
# Deploy: scripts/deployment/deploy-z-domains.sh
|
|
# Independent from OMNL / DBIS portals
|
|
|
|
upstream z_ecosystem_frontend {
|
|
server 127.0.0.1:3002;
|
|
}
|
|
|
|
upstream z_ecosystem_api {
|
|
server 127.0.0.1:3000;
|
|
}
|
|
|
|
upstream z_ecosystem_settlement {
|
|
server 127.0.0.1:3011;
|
|
}
|
|
|
|
upstream z_ecosystem_exchange {
|
|
server 127.0.0.1:3012;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name zblockchainsystem.com www.zblockchainsystem.com;
|
|
|
|
add_header X-Z-Product "z-ecosystem" always;
|
|
add_header X-Z-Chain "900002" always;
|
|
|
|
location = / {
|
|
return 302 /z;
|
|
}
|
|
|
|
include /etc/nginx/snippets/z-ecosystem-common-locations.conf;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name rpc.zblockchainsystem.com;
|
|
|
|
add_header X-Z-Product "z-chain-rpc" always;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8546;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 120s;
|
|
}
|
|
}
|