nextcloud: php-fpm tuning

This commit is contained in:
wo2wz 2025-11-10 14:32:21 -05:00
parent d9e13ef7ee
commit b9d626a050

View file

@ -60,6 +60,17 @@
settings = { settings = {
trusted_domains = [ "nextcloud.wo2wz.fyi" ]; trusted_domains = [ "nextcloud.wo2wz.fyi" ];
trusted_proxies = [ "127.0.0.1" "::1" ]; trusted_proxies = [ "127.0.0.1" "::1" ];
default_phone_region = "US";
maintenance_window_start = 2;
};
poolSettings = {
pm = "dynamic";
"pm.max_children" = "52";
"pm.start_servers" = "16";
"pm.min_spare_servers" = "8";
"pm.max_spare_servers" = "16";
}; };
extraApps = { extraApps = {
@ -73,8 +84,6 @@
}; };
maxUploadSize = "200G"; maxUploadSize = "200G";
default_phone_region = "US";
maintenance_window_start = 2;
}; };
}; };