Skip to content

Commit 6b92fe3

Browse files
authored
Merge pull request #64 from udx/fix-php-config
Increase max_children to 15
2 parents 532d33c + 3613fa6 commit 6b92fe3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

etc/configs/php/www.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ listen = /run/php/php${PHP_VERSION}-fpm.sock
55
listen.owner = ${USER}
66
listen.group = ${USER}
77
pm = dynamic
8-
pm.max_children = 5
9-
pm.start_servers = 2
10-
pm.min_spare_servers = 1
11-
pm.max_spare_servers = 3
8+
pm.max_children = 15
9+
pm.start_servers = 5
10+
pm.min_spare_servers = 3
11+
pm.max_spare_servers = 10
1212

1313
; Capture PHP worker output (including error_log) and send to FPM error log
14-
catch_workers_output = yes
14+
catch_workers_output = yes

0 commit comments

Comments
 (0)