Additional Bug fixes

This commit is contained in:
unknown
2026-05-22 11:50:59 +02:00
parent 10bfdfb914
commit a0f7efcd34
12 changed files with 372 additions and 135 deletions

View File

@@ -66,20 +66,20 @@ review_group_ids = []
paths = { media = "./data/media", documents = "./data/documents", text = "./data/text", temp = "./data/temp" }
# Chunk size for streaming upload/download. Clamped to [8 MiB, 256 MiB].
chunk_size_bytes = 67_108_864 # 64 MiB
chunk_size_bytes = 33_554_432 # = 32 MiB, 67_108_864 = 64 MiB
# ----------------------------------------------------------------------------
# Upload Limits
# ----------------------------------------------------------------------------
[upload_limits]
# Maximum number of files per content entry.
max_batch_size = 10
max_batch_size = 40
# Maximum size of a single file (bytes).
max_file_size_bytes = 838_860_800 # 800 MiB
# Maximum total size of all files in one batch (bytes).
max_total_batch_bytes = 2_147_483_648 # 2 GiB
max_total_batch_bytes = 2_147_483_648 # = 2 GiB, 5_368_709_120 = 5 GiB
# ----------------------------------------------------------------------------
# HTTP Server