Skip to content

Commit

Permalink
Merge pull request NixOS#85708 from Beskhue/fix-documentation
Browse files Browse the repository at this point in the history
nixos/phpfpm: fix erroneous pools example
  • Loading branch information
flokli authored Apr 21, 2020
2 parents 0d11947 + 8880957 commit 6ba4ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/services/web-servers/phpfpm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down

0 comments on commit 6ba4ef6

Please sign in to comment.