Additional Bug fixes
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user