Merge pull request #85708 from Beskhue/fix-documentation
nixos/phpfpm: fix erroneous pools example
This commit is contained in:
commit
6ba4ef6580
@ -209,14 +209,14 @@ in {
|
|||||||
user = "php";
|
user = "php";
|
||||||
group = "php";
|
group = "php";
|
||||||
phpPackage = pkgs.php;
|
phpPackage = pkgs.php;
|
||||||
settings = '''
|
settings = {
|
||||||
"pm" = "dynamic";
|
"pm" = "dynamic";
|
||||||
"pm.max_children" = 75;
|
"pm.max_children" = 75;
|
||||||
"pm.start_servers" = 10;
|
"pm.start_servers" = 10;
|
||||||
"pm.min_spare_servers" = 5;
|
"pm.min_spare_servers" = 5;
|
||||||
"pm.max_spare_servers" = 20;
|
"pm.max_spare_servers" = 20;
|
||||||
"pm.max_requests" = 500;
|
"pm.max_requests" = 500;
|
||||||
''';
|
};
|
||||||
}
|
}
|
||||||
}'';
|
}'';
|
||||||
description = ''
|
description = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user