Answer the question
In order to leave comments, you need to log in
Nginx+PHP: how many concurrent requests?
Requests to php through nginx, how many can there be at most at one time?
I'm not talking about server performance (it's big), but is there any limitation - at the level of settings or the maximum capabilities of nginx?
Answer the question
In order to leave comments, you need to log in
I'm sure that this mostly depends on the php-fpm settings ( php.net/manual/ru/install.fpm.configuration.php) than on nginx
the main thing to pay attention to
pm = dynamic
pm.max_children = 100
pm.start_servers = 3
pm.min_spare_servers = 3
pm.max_spare_servers = 15
pm.max_requests = 100
max_children:
This option sets a limit on the number of concurrent requests that will be served
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question