Setting the file. One moment.
Chapter 04 · Cloudflare Deploy
Subchapter 4.234
references/tunnel/README.mdMarkdown4 KBView on GitHub
Secure outbound-only connections between infrastructure and Cloudflare’s global network.
Cloudflare Tunnel (formerly Argo Tunnel) enables:
Architecture: Tunnel (persistent object) → Replica (cloudflared process) → Origin services
Terminology:
cloudflared process connected to tunnel# Install cloudflared
brew install cloudflared # macOS
# Authenticate
cloudflared tunnel login
# Create tunnel
cloudflared tunnel create my-tunnel
# Route DNS
cloudflared tunnel route dns my-tunnel app.example.com
# Run tunnel
cloudflared tunnel run my-tunnelcloudflared tunnel --no-autoupdate run --token <TOKEN>Choose config source:
Need centralized config updates?
├─ Yes → Token-based (dashboard config)
└─ No → Local config file
Multiple environments (dev/staging/prod)?
├─ Yes → Local config (version controlled)
└─ No → Either works
Need firewall approval?
└─ See networking.md first# Tunnel lifecycle
cloudflared tunnel create <name>
cloudflared tunnel list
cloudflared tunnel info <name>
cloudflared tunnel delete <name>
# DNS routing
cloudflared tunnel route dns <tunnel> <hostname>
cloudflared tunnel route list
# Private network
cloudflared tunnel route ip add 10.0.0.0/8 <tunnel>
# Run tunnel
cloudflared tunnel run <name># ~/.cloudflared/config.yml
tunnel: 6ff42ae2-765d-4adf-8112-31c55c1551ef
credentials-file: /root/.cloudflared/6ff42ae2-765d-4adf-8112-31c55c1551ef.json
ingress:
- hostname: app.example.com
service: http://localhost:8000
- hostname: api.example.com
service: https://localhost:8443
originRequest:
noTLSVerify: true
- service: http_status:404New to Cloudflare Tunnel:
Enterprise deployment:
Programmatic control: