- Add comprehensive database migrations (001-024) for schema evolution - Enhance API schema with expanded type definitions and resolvers - Add new middleware: audit logging, rate limiting, MFA enforcement, security, tenant auth - Implement new services: AI optimization, billing, blockchain, compliance, marketplace - Add adapter layer for cloud integrations (Cloudflare, Kubernetes, Proxmox, storage) - Update Crossplane provider with enhanced VM management capabilities - Add comprehensive test suite for API endpoints and services - Update frontend components with improved GraphQL subscriptions and real-time updates - Enhance security configurations and headers (CSP, CORS, etc.) - Update documentation and configuration files - Add new CI/CD workflows and validation scripts - Implement design system improvements and UI enhancements
84 lines
1.9 KiB
YAML
84 lines
1.9 KiB
YAML
# Cloudflare Tunnel Configuration for SMOM-DBIS-138
|
|
# Place this file at: /etc/cloudflared/config.yaml
|
|
|
|
tunnel: smom-dbis-138-tunnel
|
|
credentials-file: /etc/cloudflared/tunnel-credentials.json
|
|
|
|
ingress:
|
|
# Nginx Proxy (main entry point)
|
|
- hostname: nginx-proxy.sankofa.nexus
|
|
service: http://nginx-proxy-vm:80
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
tcpKeepAlive: 30s
|
|
keepAliveConnections: 100
|
|
keepAliveTimeout: 90s
|
|
|
|
# SMOM-DBIS-138 API Services
|
|
- hostname: smom-api.sankofa.nexus
|
|
service: http://smom-services:8080
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
tcpKeepAlive: 30s
|
|
|
|
# Blockscout Explorer
|
|
- hostname: smom-blockscout.sankofa.nexus
|
|
service: http://smom-blockscout:4000
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# Monitoring Dashboard
|
|
- hostname: smom-monitoring.sankofa.nexus
|
|
service: http://smom-monitoring:3000
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# RPC Node 1
|
|
- hostname: smom-rpc-01.sankofa.nexus
|
|
service: http://smom-rpc-node-01:8545
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# RPC Node 2
|
|
- hostname: smom-rpc-02.sankofa.nexus
|
|
service: http://smom-rpc-node-02:8545
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# RPC Node 3
|
|
- hostname: smom-rpc-03.sankofa.nexus
|
|
service: http://smom-rpc-node-03:8545
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# RPC Node 4
|
|
- hostname: smom-rpc-04.sankofa.nexus
|
|
service: http://smom-rpc-node-04:8545
|
|
originRequest:
|
|
noHappyEyeballs: true
|
|
connectTimeout: 30s
|
|
|
|
# Catch-all rule (must be last)
|
|
- service: http_status:404
|
|
|
|
# Logging
|
|
loglevel: info
|
|
logfile: /var/log/cloudflared/tunnel.log
|
|
|
|
# Metrics
|
|
metrics: 0.0.0.0:9090
|
|
|
|
# Health check
|
|
health-probe:
|
|
enabled: true
|
|
path: /health
|
|
port: 8080
|
|
|