docker-images/images/php-fpm/www.conf

17 lines
371 B
Plaintext
Raw Normal View History

2023-12-16 14:19:58 +00:00
pid = /run_local/php-fpm.pid
2023-12-16 13:21:21 +00:00
; Log to stdout/stderr 'cause Nomad
2023-12-16 14:09:45 +00:00
; Looks like this has to be split across [www] here.... ewww
; ....we really need to replace Nomad >_<
error_log = /proc/self/fd/2
2023-12-01 01:22:52 +00:00
[www]
2023-12-16 14:19:58 +00:00
listen = /run_local/php-fpm.sock
2023-12-01 01:22:52 +00:00
pm = dynamic
pm.max_children = 8
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 2
2023-12-16 14:09:45 +00:00
access.log = /proc/self/fd/2