Merge pull request #85708 from Beskhue/fix-documentation

nixos/phpfpm: fix erroneous pools example
This commit is contained in:
Florian Klink 2020-04-21 22:16:15 +02:00 committed by GitHub
commit 6ba4ef6580
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,14 +209,14 @@ in {
user = "php";
group = "php";
phpPackage = pkgs.php;
settings = '''
settings = {
"pm" = "dynamic";
"pm.max_children" = 75;
"pm.start_servers" = 10;
"pm.min_spare_servers" = 5;
"pm.max_spare_servers" = 20;
"pm.max_requests" = 500;
''';
};
}
}'';
description = ''