Files
docker-php-fpm/Dockerfiles/base/data/php-fpm.d/devilbox.conf
2018-02-23 08:53:30 +01:00

25 lines
445 B
Plaintext

[www]
; User and Group
user = devilbox
group = devilbox
; if we send this to /proc/self/fd/1, it never appears
access.log = /proc/self/fd/2
; Ensure to listen here
listen = 9000
; Keep env variables set by docker
clear_env = no
; Ensure worker stdout and stderr are sent to the main error log.
catch_workers_output = yes
; Pool config
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3