1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00
haze/nix/image/configs/php-fpm.conf
2026-04-28 18:55:12 +02:00

29 lines
474 B
Text

[global]
error_log = /var/log/php-fpm-error.log
daemonize = no
[www]
access.log =/var/log/php-fpm-access.log
user = haze
group = haze
listen = /var/run/php-fpm.sock
listen.owner = haze
listen.group = haze
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
pm.status_path = /fpm-status
clear_env = no
; Ensure worker stdout and stderr are sent to the main error log.
catch_workers_output = yes