fix(backend): update request size limits for improved header handling

Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com>
This commit is contained in:
Noste
2026-08-15 23:27:45 +02:00
parent 81a9b6d0a3
commit 367338af7c
3 changed files with 23 additions and 14 deletions
+2 -2
View File
@@ -51,8 +51,8 @@ config:
root_url: "https://garage-ui.example.com"
# Request size limits (in bytes)
max_body_size: 314572800 # 300MB
max_header_size: 1048576 # 1MB
read_buffer_size: 4096 # 4KB
max_header_size: 32768 # 32KB - raise if an auth proxy's headers cause HTTP 431
read_buffer_size: 32768 # 32KB - also caps total header size
write_buffer_size: 4096 # 4KB
garage: