From 031bab4a4edb5220034669a3ed5727826caccc1e Mon Sep 17 00:00:00 2001 From: teutat3s Date: Thu, 1 Feb 2024 11:21:10 +0100 Subject: [PATCH] fix(nextcloud): interned_strings_buffer should be powers of 2 --- hosts/nachtigall/apps/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/nachtigall/apps/nextcloud.nix b/hosts/nachtigall/apps/nextcloud.nix index 547722e..8ff6e3e 100644 --- a/hosts/nachtigall/apps/nextcloud.nix +++ b/hosts/nachtigall/apps/nextcloud.nix @@ -108,7 +108,7 @@ }; phpOptions = { - "opcache.interned_strings_buffer" = "23"; + "opcache.interned_strings_buffer" = "32"; # https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#:~:text=opcache.jit%20%3D%201255%20opcache.jit_buffer_size%20%3D%20128m "opcache.jit" = "1255"; "opcache.jit_buffer_size" = "128M";