about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2024-03-14 18:36:11 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-03-14 19:48:36 +0000
commitbd351f89d470c6d0fd16730d26e581a33d9cef48 (patch)
treec5f56b4cd4577fd183195fa8b33e96fcf7d8479c /nixos
parent40d989164088db79c1895f177ee67216d91ae8a5 (diff)
nixos/nextcloud: remove opcache.enable_cli=1
Upstream no longer recommends enabling the opcache cli.
See the following:
 - https://github.com/nextcloud/documentation/issues/1439
 - https://github.com/nextcloud/server/pull/15468

(cherry picked from commit 9353fb2309902387c16130c97f27242ef24bc4c6)
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/nextcloud.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix
index 8735718a93d0e..34dc07162dfde 100644
--- a/nixos/modules/services/web-apps/nextcloud.nix
+++ b/nixos/modules/services/web-apps/nextcloud.nix
@@ -14,7 +14,6 @@ let
     expose_php = "Off";
     error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT";
     display_errors = "stderr";
-    "opcache.enable_cli" = "1";
     "opcache.interned_strings_buffer" = "8";
     "opcache.max_accelerated_files" = "10000";
     "opcache.memory_consumption" = "128";