Compare commits

..

No commits in common. "bca4baf22672273bdbe57ac5df0fe8390e8f52ac" and "3d7385616bbe5532645716494a6d8417584090d1" have entirely different histories.

View File

@ -93,7 +93,7 @@
virtualHost.listenPort = 4001;
};
services.nextcloud = {
services.nextcloud = rec {
enable = true;
package = pkgs.nextcloud27;
config.adminpassFile = config.sops.secrets."nextcloud_admin".path;
@ -117,9 +117,12 @@
"OC\\Preview\\XBitmap"
];
};
phpOptions = {
phpOptions =
phpOptions.default
// {
"opcache.jit" = "tracing";
"opcache.jit_buffer_size" = "100M";
# recommended by nextcloud admin overview
"opcache.interned_strings_buffer" = "16";
};
};