You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
525 B
23 lines
525 B
[www]
|
|
; Listen on all interfaces on port 9000
|
|
listen = 0.0.0.0:9000
|
|
|
|
; Set the user and group that the PHP-FPM pool should run as
|
|
user = www-data
|
|
group = www-data
|
|
|
|
; Set the listen socket ownership and permissions
|
|
listen.owner = www-data
|
|
listen.group = www-data
|
|
listen.mode = 0666
|
|
|
|
; PHP-FPM Process Manager settings
|
|
pm = dynamic
|
|
pm.max_children = 70
|
|
pm.start_servers = 70
|
|
pm.min_spare_servers = 70
|
|
pm.max_spare_servers = 70
|
|
pm.max_requests = 500
|
|
|
|
; Set the directory to change to when executing PHP scripts
|
|
chdir = /var/www
|
|
|