From 017806025c82e09aac817b40c76af055422f8055 Mon Sep 17 00:00:00 2001 From: syoul Date: Mon, 23 Mar 2026 12:41:10 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20redirect=5Fslashes=3DFalse=20pour=20?= =?UTF-8?q?=C3=A9viter=20les=20307=20avec=20IPs=20Docker=20internes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FastAPI redirige /communes → /communes/ avec l'IP container dans le Location header, inaccessible depuis le navigateur via Fabio. Co-Authored-By: Claude Sonnet 4.6 --- backend/app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/main.py b/backend/app/main.py index 7aa94c4..83bd5cb 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -19,6 +19,7 @@ app = FastAPI( description="Outil de démocratie participative pour la tarification de l'eau", version="0.1.0", lifespan=lifespan, + redirect_slashes=False, ) app.add_middleware(