1
I have the following instance at AWS:
t2.small (Variable Ecus, 1 vCPUs, 2.5 Ghz, Intel Xeon Family, 2 Gib memory, EBS only)
And in my error log is showing
WARNING: [pool www] server reached pm.max_children setting (8), consider raising it
My configuration is like this:
pm = dynamic
pm.max_children = 8
pm.start_servers = 3
pm.min_spare_servers = 3
pm.max_spare_servers = 6
pm.max_requests = 200
pm.process_idle_timeout = 10s;
;pm.status_path = /status
;ping.path = /ping
;ping.response = pong
request_terminate_timeout = 200s
request_slowlog_timeout = 60s
php_admin_value[memory_limit] = 128M
I just thought about doubling the max_children, but I wanted to have a more appropriate setting for the instance I use.