From a03d1d058638fd446ac888ff64ac9cbacddc0d45 Mon Sep 17 00:00:00 2001 From: Thomas Reitz Date: Tue, 10 Mar 2026 17:38:13 +0100 Subject: [PATCH] fix(crm): correct Traefik middleware name to cors-api@file The CORS middleware is named cors-api, not cors-headers. Co-Authored-By: Claude Opus 4.6 --- docker-compose.crm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.crm.yml b/docker-compose.crm.yml index 9d5cebe..3764bef 100644 --- a/docker-compose.crm.yml +++ b/docker-compose.crm.yml @@ -37,7 +37,7 @@ services: - "traefik.http.routers.crm.rule=PathPrefix(`/api/v1/crm`)" - "traefik.http.routers.crm.entrypoints=web" - "traefik.http.services.crm.loadbalancer.server.port=3100" - - "traefik.http.routers.crm.middlewares=cors-headers@file,security-headers@file" + - "traefik.http.routers.crm.middlewares=cors-api@file,security-headers@file" healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3100/health"] interval: 30s