fix(networking): update MINIO_ENDPOINT to use public URL and allow trailing slashes in FastAPI

This commit is contained in:
2026-04-02 20:46:19 +02:00
parent f1a85da721
commit 02a682b401
2 changed files with 6 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ from app.db.session import lifespan
settings = get_settings()
app = FastAPI(title=settings.project_name, lifespan=lifespan, redirect_slashes=False)
app = FastAPI(title=settings.project_name, lifespan=lifespan)
app.add_middleware(
CORSMiddleware,