services.castopod.poolSettings

NixOS option

Options for Castopod’s PHP pool. See the documentation on php-fpm.conf for details on configuration directives.

type: attribute set of (string or signed integer or boolean)
Default
{
  pm = "dynamic";
  "pm.max_children" = "32";
  "pm.max_requests" = "500";
  "pm.max_spare_servers" = "4";
  "pm.min_spare_servers" = "2";
  "pm.start_servers" = "2";
}
declared in: nixos/modules/services/web-apps/castopod.nixView source on NixOS/nixpkgs →