fix(api): unlimited limit-request-line (#9461)

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This commit is contained in:
Pepe Fagoaga
2025-12-04 17:45:58 +01:00
committed by GitHub
parent 3616c0a8c0
commit 902bc9ad57

View File

@@ -19,6 +19,8 @@ PORT = env("DJANGO_PORT", default=8000)
# Server settings
bind = f"{BIND_ADDRESS}:{PORT}"
# TODO: Remove after the category filter is implemented
limit_request_line = 0
workers = env.int("DJANGO_WORKERS", default=multiprocessing.cpu_count() * 2 + 1)
reload = DEBUG