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
··· 78 extraAppsEnable = false; 79 hostName = "cloud.lilac.pink"; 80 https = true; 81 - maxUploadSize = "1G"; 82 notify_push = { 83 enable = true; 84 nextcloudUrl = "http://[::1]:8080"; ··· 110 }; 111 "simpleSignUpLink.shown" = false; 112 trusted_proxies = [ "::1" ]; 113 }; 114 }; 115 };
··· 78 extraAppsEnable = false; 79 hostName = "cloud.lilac.pink"; 80 https = true; 81 + maxUploadSize = "50G"; 82 notify_push = { 83 enable = true; 84 nextcloudUrl = "http://[::1]:8080"; ··· 110 }; 111 "simpleSignUpLink.shown" = false; 112 trusted_proxies = [ "::1" ]; 113 + "files.chunked_upload.max_size" = 2147483648; 114 }; 115 }; 116 };