diff --git a/hosts/servers/alexandria/nextcloud.nix b/hosts/servers/alexandria/nextcloud.nix index 8886634..b04ac3d 100644 --- a/hosts/servers/alexandria/nextcloud.nix +++ b/hosts/servers/alexandria/nextcloud.nix @@ -22,6 +22,11 @@ trustedProxies = [ "127.0.0.1" ]; adminpassFile = config.age.secrets.nextcloud-adminpass.path; }; + phpOptions = { + upload_max_filesize = "8G"; + post_max_size = "8G"; + "opcache.interned_strings_buffer" = "16"; + }; }; nginx.virtualHosts.${config.services.nextcloud.hostName} = {