From 6797195bdc0b5c63f11023ac85e36060c9633dd5 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:19:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(infra):=20add=20lightwrite?= =?UTF-8?q?=20subdomain=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add lightwrite.mana.how → localhost:5180 - Add lightwrite-api.mana.how → localhost:3010 Co-Authored-By: Claude Opus 4.5 --- cloudflared-config.yml | 8 ++++++++ docker/caddy/Caddyfile.production | 15 +++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/cloudflared-config.yml b/cloudflared-config.yml index 07fcb314f..8424c3e25 100644 --- a/cloudflared-config.yml +++ b/cloudflared-config.yml @@ -37,6 +37,8 @@ ingress: service: http://localhost:5013 - hostname: clock-api.mana.how service: http://localhost:3033 + - hostname: clock-bot.mana.how + service: http://localhost:4018 # Contacts App - hostname: contacts.mana.how @@ -68,6 +70,12 @@ ingress: - hostname: photos-api.mana.how service: http://localhost:3039 + # LightWrite App + - hostname: lightwrite.mana.how + service: http://localhost:5180 + - hostname: lightwrite-api.mana.how + service: http://localhost:3010 + # LLM Services - hostname: playground.mana.how service: http://localhost:5090 diff --git a/docker/caddy/Caddyfile.production b/docker/caddy/Caddyfile.production index 69527db11..ac7dfe51b 100644 --- a/docker/caddy/Caddyfile.production +++ b/docker/caddy/Caddyfile.production @@ -67,6 +67,10 @@ clock-api.mana.how { reverse_proxy localhost:3017 } +clock-bot.mana.how { + reverse_proxy localhost:4018 +} + # ============================================ # Contacts App # ============================================ @@ -89,6 +93,17 @@ skilltree-api.mana.how { reverse_proxy localhost:3038 } +# ============================================ +# LightWrite App +# ============================================ +lightwrite.mana.how { + reverse_proxy localhost:5180 +} + +lightwrite-api.mana.how { + reverse_proxy localhost:3010 +} + # ============================================ # LLM Playground # ============================================