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

推荐订阅源

D
Docker
F
Fortinet All Blogs
爱范儿
爱范儿
博客园 - Franky
MyScale Blog
MyScale Blog
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
B
Blog
P
Proofpoint News Feed
IT之家
IT之家
宝玉的分享
宝玉的分享
D
DataBreaches.Net
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
M
MIT News - Artificial intelligence
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
量子位
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
Self-Hosted Hermes Agent on iOS: Cloudflare Tunnel + Acce...
Moses Man · 2026-06-25 · via DEV Community

Moses Man

Self-Hosted Hermes Agent on iOS: Cloudflare Tunnel + Access Service Tokens + Hermex

Get your Hermes Agent on your iPhone - without paying for a relay, without a VPN, with full Cloudflare edge protection.

The Problem

You're running Hermes Agent self-hosted on a VPS. You want to chat with it from your iPhone. There are a few paths:

  • HermesPilot P2P relay - works great until it goes paid
  • Tailscale VPN - works but you need the VPN connected every time
  • Cloudflare Tunnel + CF Access - great for the browser, but iOS apps can't do OAuth redirects

The last option is the most interesting because it gives you Cloudflare's edge protection, your own domain, and no per-device VPN. The problem is that Cloudflare Access normally redirects to a browser login (Google, GitHub, etc.) - which doesn't work for a native app.

The fix: Cloudflare Access Service Tokens + custom headers.

The Architecture

There are two common paths - both work with Service Tokens:

Path A: Cloudflare Tunnel → Nginx Proxy Manager (NPM)

Hermex iOS App
│ Custom headers: CF-Access-Client-Id, CF-Access-Client-Secret
▼ HTTPS (orange cloud)
Cloudflare Edge - validates Service Token
▼
Cloudflare Tunnel (cloudflared) - connects to NPM
▼
Nginx Proxy Manager (origin certificate) - routes to backend
▼
Hermes API Server (:8642) or Hermes WebUI (:8787)

NPM handles SSL termination with origin certs and gives you a nice UI for managing proxy hosts.

Path B: Cloudflare Tunnel → Direct to Hermes

Hermex iOS App
│ Custom headers
▼ HTTPS
Cloudflare Edge - validates Service Token
▼
Cloudflare Tunnel (cloudflared) - pointed at localhost:8642
▼
Hermes API Server

Simpler, no reverse proxy. Cloudflare handles SSL at the edge.

Prerequisites

  • A domain on Cloudflare (orange-cloud proxied)
  • Hermes Agent with the API Server enabled
  • An iOS device and the Hermex app from the App Store

Step 1: Enable the Hermes API Server

In your ~/.hermes/.env:

API_SERVER_ENABLED=true
API_SERVER_KEY=generate-a-strong-random-key
API_SERVER_HOST=127.0.0.1
API_SERVER_PORT=8642

Restart and verify:

hermes gateway restart
curl -s -o /dev/null -w "%{http_code}" http://127.0.0.1:8642/health

→ 200

Step 2: Install and Configure Cloudflare Tunnel

2a. Install cloudflared

curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/local/bin/cloudflared
chmod +x /usr/local/bin/cloudflared

Or on Debian/Ubuntu:

sudo apt install cloudflared

2b. Authenticate and Create a Tunnel

cloudflared tunnel login
cloudflared tunnel create hermes-tunnel

2c. Route DNS

cloudflared tunnel route dns hermes-tunnel hermes-api.yourdomain.com

2d. Configure the Tunnel

Create ~/.cloudflared/config.yml:

tunnel:
credentials-file: /home/ubuntu/.cloudflared/.json

ingress:

Run it:

cloudflared tunnel run hermes-tunnel

Or install as a systemd service:

sudo cloudflared service install

2e. Tunnel → Nginx Proxy Manager

If using NPM, point the tunnel at localhost:80 instead:

ingress:

Then in NPM, add a proxy host:

  • Domain: hermes-api.yourdomain.com
  • Forward to: http://127.0.0.1:8642
  • Enable Websockets
  • SSL tab → Cloudflare Origin Certificate
  • Cloudflare SSL/TLS → Full (strict)

Step 3: Cloudflare Access - Service Token

Mode How it works Use for
Allow Redirects to OAuth (Google, GitHub, etc.) Browser users
Service Auth Validates static headers Apps, APIs, scripts

3a. Create the Service Token

Cloudflare Zero Trust Dashboard → Access → Service Auth → Create Service Token
Name it hermex-ios.
Copy the Client ID and Client Secret immediately.

3b. Create the Access Application

Access → Applications → Add an application → Self-hosted → set domain
Add a policy with:

  • Action: Service Auth ← NOT "Allow"
  • Select the hermex-ios service token

Save. Cloudflare now accepts requests with the correct headers.

Step 4: Configure Hermex

On your iPhone:

Press connect.

Why This Works

Service Tokens are designed for machine-to-machine auth. Cloudflare's edge reads CF-Access-Client-Id and CF-Access-Client-Secret headers on every request and validates before anything reaches your tunnel. The app never sees a login page. Same pattern as CI/CD pipelines and Terraform - just works for iOS too.

What About mTLS?

mTLS would be ideal but iOS support is painful. No native NSURLSession support without painful workarounds, certificate distribution is a UX nightmare, renewal and revocation need custom code.

Service Tokens give the same "pre-shared credential at the edge" model over HTTP headers instead of TLS handshakes.

Troubleshooting

  • Cloudflare login page → Policy set to Allow instead of Service Auth
  • 401 Unauthorized → Header spelling wrong (case-sensitive)
  • 502 Bad Gateway → tunnel/NPM can't reach the backend
  • Connection timeout → Tunnel not running or DNS not proxied

Quick health check:
systemctl status cloudflared
curl localhost:8642/health
dig hermes-api.yourdomain.com +short

Alternative: Tailscale

curl -fsSL https://tailscale.com/install.sh | sh
sudo tailscale up
hermeslink config set lanHost "100.x.x.x"

Works over WireGuard. Downside: VPN needed every time.

Conclusion

Cloudflare Access Service Tokens are the missing piece for authenticating native apps behind Cloudflare. With Hermex's custom header support, this takes about 10 minutes if you already have the tunnel running.