voyager: increase nextcloud upload size

This commit is contained in:
Felix Albrigtsen 2024-01-06 15:28:31 +01:00
parent a32ea3dc86
commit 15b548894b
1 changed files with 6 additions and 6 deletions

View File

@ -22,12 +22,12 @@ in {
defaultPhoneRegion = "NO";
};
# phpOptions = {
# "opcache.interned_strings_buffer" = "16";
# "upload_max_filesize" = "4G";
# "post_max_size" = "4G";
# "memory_limit" = "4G";
# };
phpOptions = {
"opcache.interned_strings_buffer" = "16";
"upload_max_filesize" = lib.mkForce "8G";
"post_max_size" = lib.mkForce "8G";
"memory_limit" = lib.mkForce "8G";
};
poolSettings = {
"pm" = "ondemand";