From 08a3eced9512c86693868c964c54c535d0ad5f81 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Wed, 14 Jun 2023 21:44:45 -0700 Subject: [PATCH] add redis php for nextcloud --- modules/configuration.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/configuration.nix b/modules/configuration.nix index 53763b3..0face4c 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; [ apcu imagick memcached ]); + extensions = { enabled, all }: enabled ++ (with all; [ redis imagick memcached ]); extraConfig = '' display_errors = On display_startup_errors = On @@ -21,7 +21,6 @@ let post_max_size = 2048M upload_max_filesize = 2048M opcache.interned_strings_buffer = 32 - apc.enable_cli=1 ''; }; in