From 5c1dd1350367f884ad80e4454a54e6e993ba9bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Thu, 28 Apr 2022 08:42:56 +0100 Subject: [PATCH] reduce multipart size to 5MiB Otherwise the uploads will fail because the internet is just this slow for my mastodon instance lmao --- config/services/mastodon.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/config/services/mastodon.nix b/config/services/mastodon.nix index 01a1815e..c45b987e 100644 --- a/config/services/mastodon.nix +++ b/config/services/mastodon.nix @@ -40,6 +40,7 @@ in S3_ALIAS_HOST = "mastodon-assets.chir.rs"; S3_OPEN_TIMEOUT = "120"; S3_READ_TIMEOUT = "120"; + S3_MULTIPART_THRESHOLD = "5242880"; }; redis.createLocally = false; otpSecretFile = config.sops.secrets."services/mastodon/otpSecret".path;