php/5.6/fpm/php-fpm.conf

26 lines
448 B
Plaintext
Raw Normal View History

2014-11-07 01:41:50 +01:00
; This file was initially adapated from the output of: (on PHP 5.6)
; grep -vE '^;|^ *$' /usr/local/etc/php-fpm.conf.default
[global]
error_log = /proc/self/fd/2
daemonize = no
[www]
; if we send this to /proc/self/fd/1, it never appears
access.log = /proc/self/fd/2
user = www-data
group = www-data
2014-11-20 00:06:38 +01:00
listen = [::]:9000
2014-11-07 01:41:50 +01:00
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
clear_env = no