From a50e4e5026013af2a0747e0704be701850c35af5 Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Mon, 8 Dec 2025 22:27:34 +0100 Subject: [PATCH] fix(staging): add manacore-web origin to backend CORS configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow manacore-web (port 5173) to call todo-backend, calendar-backend, and clock-backend APIs by adding it to their CORS_ORIGINS. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker-compose.staging.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.staging.yml b/docker-compose.staging.yml index b33ba737c..e8741a4bf 100644 --- a/docker-compose.staging.yml +++ b/docker-compose.staging.yml @@ -220,7 +220,7 @@ services: DB_PORT: 5432 DB_USER: ${POSTGRES_USER:-postgres} MANA_CORE_AUTH_URL: http://mana-core-auth:3001 - CORS_ORIGINS: http://46.224.108.214:5188,http://localhost:5188 + CORS_ORIGINS: http://46.224.108.214:5188,http://46.224.108.214:5173,http://localhost:5188,http://localhost:5173 ports: - "3018:3018" healthcheck: @@ -288,7 +288,7 @@ services: DB_PORT: 5432 DB_USER: ${POSTGRES_USER:-postgres} MANA_CORE_AUTH_URL: http://mana-core-auth:3001 - CORS_ORIGINS: http://46.224.108.214:5186,http://localhost:5186 + CORS_ORIGINS: http://46.224.108.214:5186,http://46.224.108.214:5173,http://localhost:5186,http://localhost:5173 ports: - "3016:3016" healthcheck: @@ -356,7 +356,7 @@ services: DB_PORT: 5432 DB_USER: ${POSTGRES_USER:-postgres} MANA_CORE_AUTH_URL: http://mana-core-auth:3001 - CORS_ORIGINS: http://46.224.108.214:5187,http://localhost:5187 + CORS_ORIGINS: http://46.224.108.214:5187,http://46.224.108.214:5173,http://localhost:5187,http://localhost:5173 ports: - "3017:3017" healthcheck: