From 73c6503499644a3f6891788ac2e78a67b62c2f32 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 16 Jul 2022 09:58:55 +0200 Subject: [PATCH] update php.ini: increase limits to match recommendations increase interned_strings_buffer as notified by the admin panel and increase the apc cache revalidation time as revalidating the php files isn't required that often (see https://docs.nextcloud.com/server/24/admin_manual/installation/server_tuning.html#enable-php-opcache) --- webservice/nextcloud_php.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webservice/nextcloud_php.ini b/webservice/nextcloud_php.ini index d2b64a3..816881a 100644 --- a/webservice/nextcloud_php.ini +++ b/webservice/nextcloud_php.ini @@ -1,10 +1,10 @@ opcache.enable=1 opcache.enable_cli=1 -opcache.interned_strings_buffer=8 +opcache.interned_strings_buffer=16 opcache.max_accelerated_files=10000 opcache.memory_consumption=128 opcache.save_comments=1 -opcache.revalidate_freq=1 +opcache.revalidate_freq=60 memory_limit = 1G apc.enable_cli=1