From b3e8e45966f76389ed9fef822046eedb55bd4bf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Sun, 29 Oct 2023 19:28:39 +0100 Subject: [PATCH] fix: increase php strings cache size for nextcloud https://github.com/nextcloud/server/issues/31223 --- hosts/nachtigall/apps/nextcloud.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/nachtigall/apps/nextcloud.nix b/hosts/nachtigall/apps/nextcloud.nix index a138d90..d3f430d 100644 --- a/hosts/nachtigall/apps/nextcloud.nix +++ b/hosts/nachtigall/apps/nextcloud.nix @@ -111,6 +111,10 @@ simpleSignUpLink.shown = false; }; + phpOptions = { + "opcache.interned_strings_buffer" = "16"; + }; + caching.redis = true; autoUpdateApps.enable = true; database.createLocally = true;