From 1e5e4ae61ee482dbf8d7e2f5318dd731ddedcbc2 Mon Sep 17 00:00:00 2001 From: Torsten O'Donoghue Date: Fri, 12 Jun 2026 10:30:26 +0200 Subject: [PATCH] fix(service): correct Convex origin env vars and expose HTTP actions port --- templates/compose/convex.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/compose/convex.yaml b/templates/compose/convex.yaml index 29d4144c3..8818a07dc 100644 --- a/templates/compose/convex.yaml +++ b/templates/compose/convex.yaml @@ -12,14 +12,15 @@ services: - data:/convex/data environment: - SERVICE_URL_BACKEND_3210 + - SERVICE_URL_SITE_3211 - INSTANCE_NAME=${INSTANCE_NAME:-self-hosted-convex} - INSTANCE_SECRET=${SERVICE_HEX_64_SECRET} - CONVEX_RELEASE_VERSION_DEV=${CONVEX_RELEASE_VERSION_DEV:-} - ACTIONS_USER_TIMEOUT_SECS=${ACTIONS_USER_TIMEOUT_SECS:-} # URL of the Convex API as accessed by the client/frontend. - - CONVEX_CLOUD_ORIGIN=${SERVICE_URL_DASHBOARD} + - CONVEX_CLOUD_ORIGIN=${SERVICE_URL_BACKEND} # URL of Convex HTTP actions as accessed by the client/frontend. - - CONVEX_SITE_ORIGIN=${SERVICE_URL_BACKEND} + - CONVEX_SITE_ORIGIN=${SERVICE_URL_SITE} - DATABASE_URL=${DATABASE_URL:-} - DISABLE_BEACON=${DISABLE_BEACON:?false} - REDACT_LOGS_TO_CLIENT=${REDACT_LOGS_TO_CLIENT:?false}