From 0335f48c485b48ada293a4824163e0580dd7a3f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 19 Aug 2026 08:28:18 +0200 Subject: [PATCH] feat: adjust config to prod environment --- .env | 2 +- config/services.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env b/.env index 125ce4f..620f72a 100644 --- a/.env +++ b/.env @@ -26,5 +26,5 @@ BACKEND_BASE_URL=https://backend.corp.internal/api ###> appsmith apps ### # One line per Appsmith app you register — add more as you build more apps, # and add a matching line in config/services.yaml under appsmith.apps. -APP_SANDBOX_LOGIN_URL=https://appsmith.corp.internal/app/sandbox/login-abc123 +APP_SANDBOX_URL=https://appsmith.corp.internal/app/app-sandbox/login-1234567890abcdef ###< appsmith apps ### diff --git a/config/services.yaml b/config/services.yaml index 3821b1e..8ff5c68 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -17,10 +17,10 @@ parameters: # Add one entry per app you build. Never accept a return URL from the # request itself — always resolve through this map. appsmith.apps: - app-sandbox: - url: '%env(APP_SANDBOX_LOGIN_URL)%' - role_prefix: 'app-sandbox-' - access_role: 'app-sandbox-access' + app-hub: + url: '%env(APP_HUB_URL)%' + role_prefix: 'app-hub-' + access_role: 'app-hub-access' # Named backends the proxy can forward to. A request picks one via the # X-Backend header; omitting it uses "default". Add BACKEND__URL to