From fc1cde9d227851a1f50ad2c79a98ab10f0bd4ba9 Mon Sep 17 00:00:00 2001 From: till Date: Tue, 5 May 2026 15:46:20 +0200 Subject: [PATCH] tunnel: route admin.mana.how + npm.mana.how to the mana-platform stack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two new public hostnames pointing at containers that live in the separate mana-platform repo (Code/mana, ~/projects/mana-platform on the Mac Mini): - admin.mana.how → :3071 (mana-admin, Verein backoffice) - npm.mana.how → :4873 (Verdaccio, private @mana/* npm registry) Both deployed alongside the legacy stack via infrastructure/docker-compose.macmini.yml in the mana-platform repo. No change to existing routes. --- cloudflared-config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cloudflared-config.yml b/cloudflared-config.yml index 45a0f83b3..3f15e6f43 100644 --- a/cloudflared-config.yml +++ b/cloudflared-config.yml @@ -151,6 +151,16 @@ ingress: - hostname: feedback.mana.how service: http://localhost:3064 + # ============================================ + # mana e.V. platform (Code/mana, separate repo) + # Lives under ~/projects/mana-platform/ on the Mac Mini, deployed via + # infrastructure/docker-compose.macmini.yml. Coexists with this stack. + # ============================================ + - hostname: admin.mana.how + service: http://localhost:3071 + - hostname: npm.mana.how + service: http://localhost:4873 + # ============================================ # Standalone web apps (separate containers) # ============================================