Last active
November 17, 2022 09:11
-
-
Save 1Caxz/1076dc48adf44f4e2cc245f767541ffe to your computer and use it in GitHub Desktop.
Config PHP-FPM for high 100% CPU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.conf https://thisinterestsme.com/php-fpm-settings/ | |
pm = static # Good for high traffics | |
pm.max_children = 25 | |
pm.start_servers = 5 | |
pm.min_spare_servers = 5 | |
pm.max_spare_servers = 10 | |
pm.max_requests = 1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment