Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hansson <github@hanssonit.se>2022-02-03 00:15:20 +0300
committerGitHub <noreply@github.com>2022-02-03 00:15:20 +0300
commitb70c2932d81ed0f069099812ceaff8b444e96c7b (patch)
tree68722b05a4e62b766658ae141774f49465453300
parent6bb6ebf31ce31992b4de9b10af0e5b308e0794df (diff)
raise buffer to 16 instead of 8 for opcache
-rw-r--r--nextcloud_install_production.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/nextcloud_install_production.sh b/nextcloud_install_production.sh
index e234f9f0..c401f6d6 100644
--- a/nextcloud_install_production.sh
+++ b/nextcloud_install_production.sh
@@ -546,7 +546,7 @@ phpenmod opcache
echo "# OPcache settings for Nextcloud"
echo "opcache.enable=1"
echo "opcache.enable_cli=1"
-echo "opcache.interned_strings_buffer=8"
+echo "opcache.interned_strings_buffer=16"
echo "opcache.max_accelerated_files=10000"
echo "opcache.memory_consumption=256"
echo "opcache.save_comments=1"