fix(nextcloud): Increase php string buffer
This commit is contained in:
parent
b0b576e9fe
commit
a54bedb6c7
1 changed files with 15 additions and 1 deletions
|
@ -46,6 +46,21 @@ in {
|
|||
"pm.start_servers" = "6";
|
||||
};
|
||||
|
||||
phpOptions = {
|
||||
short_open_tag = "Off";
|
||||
expose_php = "Off";
|
||||
error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT";
|
||||
display_errors = "stderr";
|
||||
"opcache.enable_cli" = "1";
|
||||
"opcache.interned_strings_buffer" = "32";
|
||||
"opcache.max_accelerated_files" = "10000";
|
||||
"opcache.memory_consumption" = "128";
|
||||
"opcache.revalidate_freq" = "1";
|
||||
"opcache.fast_shutdown" = "1";
|
||||
"openssl.cafile" = "/etc/ssl/certs/ca-certificates.crt";
|
||||
catch_workers_output = "yes";
|
||||
};
|
||||
|
||||
systemd.services.nextcloud-preview = {
|
||||
script = "nextcloud-occ preview:pre-generate -vvv";
|
||||
startAt = "*-*-* 01:00:00 UTC";
|
||||
|
@ -66,7 +81,6 @@ in {
|
|||
updatechecker = false;
|
||||
|
||||
allow_local_remote_servers = true;
|
||||
"opcache.interned_strings_buffer" = 32;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue