CallePuzzle / villajilguero-oci-services

Apache License 2.0
0 stars 0 forks source link

PHP-FPM Tuning #4

Open jilgue opened 9 months ago

jilgue commented 9 months ago

To further boost performance, consider tuning PHP-FPM settings. Adjusting parameters like pm.max_children and pm.start_servers can help optimize resource usage. Here's an example of PHP-FPM configuration adjustments:

[www]
pm = dynamic
pm.max_children = 70
pm.start_servers = 20
pm.min_spare_servers = 20
pm.max_spare_servers = 35
# This configuration snippet adjusts PHP-FPM settings to optimize resource usage for your Nextcloud instance.

https://marketsplash.com/tutorials/docker/nextcloud-docker/

jilgue commented 7 months ago

[24-Jan-2024 07:58:10] WARNING: [pool www] server reached pm.max_children setting (5), consider raising it