Skip to content

Commit

Permalink
config: increase upload and download chunk size to 32MB
Browse files Browse the repository at this point in the history
  • Loading branch information
PlusOne committed Dec 30, 2024
1 parent f302d87 commit 10cd9bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/server/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ maxversions = 1
[uploads]
resumableuploadsenabled = true
chunkeduploadsenabled = true
chunksize = "8192"
chunksize = "32MB"
allowedextensions = [
".txt", ".pdf", ".png", ".jpg", ".jpeg", ".gif",
".bmp", ".tiff", ".svg", ".webp", ".wav", ".mp4",
Expand All @@ -69,7 +69,7 @@ allowedextensions = [
[downloads]
resumabledownloadsenabled = true
chunkeddownloadsenabled = true
chunksize = "8192"
chunksize = "32MB"
allowedextensions = [".jpg", ".png"] # Restricts downloads to specific types

[clamav]
Expand Down

0 comments on commit 10cd9bc

Please sign in to comment.