Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
1.6 KiB
Bash
Executable File
53 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Load IP configuration
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
source "${PROJECT_ROOT}/config/ip-addresses.conf" 2>/dev/null || true
|
|
|
|
|
|
# Quick script to install Cloudflare Tunnel service
|
|
# Usage: ./INSTALL_TUNNEL.sh <TUNNEL_TOKEN>
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Error: Tunnel token required!"
|
|
echo ""
|
|
echo "Usage: $0 <TUNNEL_TOKEN>"
|
|
echo ""
|
|
echo "Get your token from Cloudflare Dashboard:"
|
|
echo " Zero Trust → Networks → Tunnels → Create tunnel → Copy token"
|
|
exit 1
|
|
fi
|
|
|
|
TUNNEL_TOKEN="$1"
|
|
PROXMOX_HOST="${PROXMOX_HOST:-192.168.11.10}"
|
|
CLOUDFLARED_VMID="${CLOUDFLARED_VMID:-102}"
|
|
|
|
echo "Installing Cloudflare Tunnel service..."
|
|
echo "Container: VMID $CLOUDFLARED_VMID"
|
|
|
|
# Stop existing DoH service if running
|
|
ssh root@${PROXMOX_HOST} "pct exec $CLOUDFLARED_VMID -- systemctl stop cloudflared 2>/dev/null || true"
|
|
|
|
# Install tunnel service
|
|
ssh root@${PROXMOX_HOST} "pct exec $CLOUDFLARED_VMID -- cloudflared service install $TUNNEL_TOKEN"
|
|
|
|
# Enable and start
|
|
ssh root@${PROXMOX_HOST} "pct exec $CLOUDFLARED_VMID -- systemctl enable cloudflared"
|
|
ssh root@${PROXMOX_HOST} "pct exec $CLOUDFLARED_VMID -- systemctl start cloudflared"
|
|
|
|
# Check status
|
|
echo ""
|
|
echo "Checking tunnel status..."
|
|
ssh root@${PROXMOX_HOST} "pct exec $CLOUDFLARED_VMID -- systemctl status cloudflared --no-pager | head -10"
|
|
|
|
echo ""
|
|
echo "✅ Tunnel service installed!"
|
|
echo ""
|
|
echo "Next steps:"
|
|
echo "1. Configure routes in Cloudflare Dashboard"
|
|
echo "2. Update DNS records to CNAME pointing to tunnel"
|
|
echo "3. See: docs/04-configuration/CLOUDFLARE_TUNNEL_QUICK_SETUP.md"
|
|
|