From 69f126106063df7d10b11cbf61df48f4cf6beb22 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 23 Apr 2026 13:51:53 +0200 Subject: [PATCH] feat(infra): route events.mana.how + research.mana.how through tunnel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two subdomains the webapp references in its SSR-injected config but that had no tunnel entry: - events.mana.how → mana-events on :3065. The container itself was also missing (defined in compose but never started); started today so the route now terminates somewhere real. - research.mana.how → mana-research on :3068. The webapp was built with PUBLIC_MANA_RESEARCH_URL empty, which made research fetches fall back to mana.how and 404. The env-var side is still pending a rebuild, but the tunnel side is live now. Cloudflare CNAMEs already created via `tunnel route dns`. Co-Authored-By: Claude Opus 4.7 (1M context) --- cloudflared-config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cloudflared-config.yml b/cloudflared-config.yml index 159d7c05e..f9e8ee895 100644 --- a/cloudflared-config.yml +++ b/cloudflared-config.yml @@ -144,6 +144,10 @@ ingress: service: http://localhost:3002 - hostname: subscriptions.mana.how service: http://localhost:3063 + - hostname: events.mana.how + service: http://localhost:3065 + - hostname: research.mana.how + service: http://localhost:3068 # ============================================ # Standalone web apps (separate containers)