fix(nextcloud): Increase pm.max_children
This commit is contained in:
parent
ce18c18b2c
commit
6fd98b6c02
1 changed files with 9 additions and 0 deletions
|
@ -37,6 +37,15 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
poolSettings = {
|
||||||
|
pm = "dynamic";
|
||||||
|
"pm.max_children" = 64;
|
||||||
|
"pm.max_requests" = "500";
|
||||||
|
"pm.max_spare_servers" = "8";
|
||||||
|
"pm.min_spare_servers" = "4";
|
||||||
|
"pm.start_servers" = "6";
|
||||||
|
};
|
||||||
|
|
||||||
notify_push = { enable = true; };
|
notify_push = { enable = true; };
|
||||||
|
|
||||||
database.createLocally = true;
|
database.createLocally = true;
|
||||||
|
|
Loading…
Reference in a new issue