services.grocy.phpfpm.settings
NixOS option
Options for grocy’s PHPFPM pool.
type: attribute set of (signed integer or string or boolean)Default
declared in: nixos/modules/services/web-apps/grocy.nixView source on NixOS/nixpkgs →{
"pm" = "dynamic";
"php_admin_value[error_log]" = "stderr";
"php_admin_flag[log_errors]" = true;
"listen.owner" = config.services.nginx.user;
"catch_workers_output" = true;
"pm.max_children" = "32";
"pm.start_servers" = "2";
"pm.min_spare_servers" = "2";
"pm.max_spare_servers" = "4";
"pm.max_requests" = "500";
}