aboutsummaryrefslogtreecommitdiff
path: root/nixops
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-16 12:21:01 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-02-16 12:21:01 +0100
commit210cb688796aed2fb460cd8e81e24777f4779b9c (patch)
treed5b73d2a91f5a71b6153d6c9edd09d2560428ef6 /nixops
parent3736442eb52ac9ca25c5a788828acb3f5461eb70 (diff)
downloadNix-210cb688796aed2fb460cd8e81e24777f4779b9c.tar.gz
Nix-210cb688796aed2fb460cd8e81e24777f4779b9c.tar.zst
Nix-210cb688796aed2fb460cd8e81e24777f4779b9c.zip
Disable opcache for nextcloud (it is enabled by default)
Diffstat (limited to 'nixops')
-rw-r--r--nixops/modules/websites/tools/cloud/nextcloud.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixops/modules/websites/tools/cloud/nextcloud.nix b/nixops/modules/websites/tools/cloud/nextcloud.nix
index ad44057..ac77920 100644
--- a/nixops/modules/websites/tools/cloud/nextcloud.nix
+++ b/nixops/modules/websites/tools/cloud/nextcloud.nix
@@ -262,7 +262,8 @@ let
262 php_admin_value[output_buffering] = 0 262 php_admin_value[output_buffering] = 0
263 php_admin_value[max_execution_time] = 1800 263 php_admin_value[max_execution_time] = 1800
264 php_admin_value[zend_extension] = "opcache" 264 php_admin_value[zend_extension] = "opcache"
265 php_value[opcache.enable] = 1 265 ;already enabled by default?
266 ;php_value[opcache.enable] = 1
266 php_value[opcache.enable_cli] = 1 267 php_value[opcache.enable_cli] = 1
267 php_value[opcache.interned_strings_buffer] = 8 268 php_value[opcache.interned_strings_buffer] = 8
268 php_value[opcache.max_accelerated_files] = 10000 269 php_value[opcache.max_accelerated_files] = 10000