We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83af944 + 1a9a340 commit 0a41a8cCopy full SHA for 0a41a8c
modules/nextcloud.nix
@@ -61,9 +61,13 @@ in
61
];
62
63
phpOptions = lib.mkIf cfg.recommendedDefaults {
64
+ # recommended by nextcloud admin overview after some usage, default 8
65
+ "opcache.interned_strings_buffer" = 16;
66
# https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#:~:text=opcache.jit%20%3D%201255%20opcache.jit_buffer_size%20%3D%20128m
67
"opcache.jit" = 1255;
68
"opcache.jit_buffer_size" = "128M";
69
+ # https://docs.nextcloud.com/server/32/admin_manual/installation/server_tuning.html#enable-php-opcache
70
+ "opcache.revalidate_freq" = 60; # default 1
71
};
72
73
settings = lib.mkMerge [
0 commit comments