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 # ============================================