From d53b8d58ed12de428a344ae11acbb386fdb56b62 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Wed, 14 Jun 2023 21:53:06 -0700 Subject: [PATCH] add back apcu php for nextcloud --- modules/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/configuration.nix b/modules/configuration.nix index 0face4c..688e158 100644 --- a/modules/configuration.nix +++ b/modules/configuration.nix @@ -6,7 +6,7 @@ let custom-php = pkgs.php81.buildEnv { - extensions = { enabled, all }: enabled ++ (with all; [ redis imagick memcached ]); + extensions = { enabled, all }: enabled ++ (with all; [ apcu redis imagick memcached ]); extraConfig = '' display_errors = On display_startup_errors = On @@ -21,6 +21,7 @@ let post_max_size = 2048M upload_max_filesize = 2048M opcache.interned_strings_buffer = 32 + apc.enable_cli=1 ''; }; in