Nix configurations for my homelab

Increase the max upload size and chunked upload max size for nextcloud

yemou.pink 847adef5 03a8b7de

verified
Changed files
+2 -1
modules
services
+2 -1
modules/services/nextcloud.nix
···
extraAppsEnable = false;
hostName = "cloud.lilac.pink";
https = true;
-
maxUploadSize = "1G";
+
maxUploadSize = "50G";
notify_push = {
enable = true;
nextcloudUrl = "http://[::1]:8080";
···
};
"simpleSignUpLink.shown" = false;
trusted_proxies = [ "::1" ];
+
"files.chunked_upload.max_size" = 2147483648;
};
};
};