nixos/nextcloud: enable apc cache for cli if apcu is enabled

As described in the admin manual[1] of Nextcloud.

[1] https://docs.nextcloud.com/server/21/admin_manual/configuration_server/caching_configuration.html#id1
This commit is contained in:
Maximilian Bosch 2021-03-04 21:13:51 +01:00
parent 797721423c
commit 690449f3ae
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -28,7 +28,10 @@ let
upload_max_filesize = cfg.maxUploadSize;
post_max_size = cfg.maxUploadSize;
memory_limit = cfg.maxUploadSize;
} // cfg.phpOptions;
} // cfg.phpOptions
// optionalAttrs cfg.caching.apcu {
"apc.enable_cli" = "1";
};
occ = pkgs.writeScriptBin "nextcloud-occ" ''
#! ${pkgs.runtimeShell}