mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-10 11:01:14 +00:00
25 lines
445 B
Plaintext
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
|