mirror of
https://github.com/danog/php.git
synced 2024-12-02 17:38:24 +01:00
11f5f37233
Adding 7.0 to travis Fixes for the reviewed code Fixes to have the directory as 7.0 Change version on travis Remove GPG from Dockerfile on 7.0
26 lines
448 B
Plaintext
26 lines
448 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
|
|
|
|
clear_env = no
|