mirror of
https://github.com/danog/php.git
synced 2024-11-27 04:14:56 +01:00
24 lines
432 B
Plaintext
24 lines
432 B
Plaintext
; 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
|
|
|
|
listen = [::]:9000
|
|
|
|
pm = dynamic
|
|
pm.max_children = 5
|
|
pm.start_servers = 2
|
|
pm.min_spare_servers = 1
|
|
pm.max_spare_servers = 3
|