惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
B
Blog
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
IT之家
IT之家
D
Docker
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building Cfmux — A Wrapper Around Cloudflared for Multi-A...
Exiro Studio · 2026-05-15 · via DEV Community

Exiro Studio

Most infrastructure tools are born from one thing:

Frustration.

Cfmux started exactly the same way.

For a long time, I used Cloudflare Tunnel through cloudflared for almost everything:

  • self-hosted apps
  • development environments
  • temporary testing
  • internal dashboards
  • webhook receivers

And honestly?

cloudflared is great.

It is lightweight, stable, simple to deploy, and probably one of the easiest ways to expose local services securely without dealing with public IPs or complicated reverse proxy setups.

But eventually I hit a workflow problem.

Not a technical limitation.

A workflow limitation.


The Problem Wasn't Tunneling

The problem appeared when I started managing multiple Cloudflare accounts.

Something like this:

  • personal projects
  • client infrastructure
  • staging environments
  • isolated test environments
  • temporary deployments

At first it was manageable.

Then slowly things became messy.

Credential confusion.
Wrong account usage.
Mixed runtime state.
Configs everywhere.

And I realized something important:

I was manually building my own management layer around cloudflared anyway.

So eventually I decided to formalize it.


Enter Cfmux

Cfmux is a lightweight wrapper around cloudflared.

Not a replacement.

Not a competitor.

It still relies entirely on the official Cloudflare tooling underneath.

The goal is actually very small:

make multi-account tunnel workflows cleaner and isolated.

That’s it.

No magic networking layer.
No custom tunnel protocol.
No attempt to reinvent Cloudflare Tunnel.

Just workflow management.


The Core Idea

Instead of relying on one global runtime state, Cfmux isolates everything into profiles.

Example:

~/.cfmux/
├── profiles/
│   ├── personal/
│   ├── client-a/
│   └── staging/
│
└── current-profile

Enter fullscreen mode Exit fullscreen mode

Each profile has isolated:

  • credentials
  • configs
  • runtime state
  • services

So switching contexts becomes much safer.


The Difference Sounds Small...

But in practice it changes the workflow completely.

Instead of constantly doing:

cloudflared --origincert path/to/cert.pem tunnel list

Enter fullscreen mode Exit fullscreen mode

You simply do:

cfmux tunnel list

Enter fullscreen mode Exit fullscreen mode

Because the active profile already knows:

  • which credentials to use
  • which runtime state belongs to which account
  • which service belongs to which tunnel

It removes a surprising amount of friction.


One Important Design Decision

From the beginning, I intentionally avoided turning this into:

“another overengineered dashboard project.”

I wanted:

  • single binary
  • CLI-first
  • minimal dependencies
  • Linux-friendly
  • boring architecture

So the stack became:

  • Golang
  • Cobra CLI
  • YAML
  • systemd integration

Very traditional.

Very infrastructure-oriented.

And honestly, I think boring stacks are underrated for infra tooling.


The MVP Was Extremely Small

The first version only focused on four things:

cfmux profile add
cfmux profile use
cfmux tunnel list
cfmux service install

Enter fullscreen mode Exit fullscreen mode

That was enough.

No web dashboard.
No database.
No Kubernetes operator.

Just practical tooling.


One Thing That Surprised Me

The deeper I went into this project, the more I realized:

infrastructure tools live or die from reliability.

Not features.

So instead of aggressively adding functionality, I started focusing heavily on testing.

Especially integration testing.

Things like:

  • profile isolation
  • runtime separation
  • corrupt registry handling
  • passthrough execution
  • filesystem safety
  • drift detection
  • config protection

Because infrastructure software stops being “just code” once people trust it with production environments.


Why I Still Respect cloudflared

One thing I want to make very clear:

Cfmux exists because of a workflow gap.

Not because cloudflared is bad.

Actually the opposite.

cloudflared is good enough that I wanted a better management experience around it instead of replacing it entirely.

And honestly?

If Cloudflare eventually adds proper native multi-account workflow management someday, that would be great.

Cfmux was never intended to fight the ecosystem.

It was built to make one specific workflow cleaner.


Installation

Currently installation/update is just:

curl -fsSL https://raw.githubusercontent.com/ExiroStudio/cfmux/main/install.sh | bash

Enter fullscreen mode Exit fullscreen mode


GitHub

Project repository:

GitHub: https://github.com/ExiroStudio/cfmux

My GitHub: https://github.com/ExiroStudio


Final Thoughts

One thing I’ve learned from building this project:

Some of the best software ideas are not revolutionary.

Sometimes they are just:

“this workflow annoys me enough that I should fix it properly.”

And weirdly enough, those projects often become the most useful ones.

Especially when you end up using them yourself every single day.