feat: support permanent Cloudflare tunnels via custom domains#9
Draft
feat: support permanent Cloudflare tunnels via custom domains#9
Conversation
Add three-tier tunnel detection in entrypoint: 1. CF_TUNNEL_TOKEN → managed tunnel (permanent domain) 2. (default) → quick tunnel (ephemeral *.trycloudflare.com) Add /setup-tunnel skill that walks users through the Cloudflare Zero Trust dashboard setup step by step. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
container/entrypoint.sh: managed tunnel (permanent domain) whenCF_TUNNEL_TOKENis set, otherwise falls back to ephemeral quick tunnel (current behavior)/setup-tunnelskill that walks users through the entire Cloudflare setup interactivelyHow to set up a permanent domain (beginner guide)
What you need
Steps
eyJ...string after--tokenin the install command they show younw)localhost:3000.env:woltspace restarthttps://nw.yourdomain.com— your wolt now has a permanent URL that survives restartsOr just use the skill
Run
/setup-tunnelinside any wolt session — it walks you through every step interactively and configures everything for you.How it works
The entrypoint checks for
CF_TUNNEL_TOKENat startup:cloudflared tunnel run --token(permanent domain, URL written instantly)cloudflared tunnel --url(ephemeral*.trycloudflare.com, current default)Everything downstream (bot links, split view, CLI) reads
.state/tunnel-url— no changes needed. The file just contains a stable URL instead of a random one.Reverting to ephemeral
Remove or comment out
CF_TUNNEL_TOKENandCF_TUNNEL_HOSTNAMEfrom.env, restart. Falls back automatically.Test plan
CF_TUNNEL_TOKEN— verify ephemeral tunnel works as beforeCF_TUNNEL_TOKEN+CF_TUNNEL_HOSTNAME— verify permanent domain connects.state/tunnel-urlcontains the permanent hostname🤖 Generated with Claude Code