23 lines
448 B
Text
23 lines
448 B
Text
|
|
; Host UK PHP-FPM pool configuration
|
||
|
|
[www]
|
||
|
|
pm = dynamic
|
||
|
|
pm.max_children = 50
|
||
|
|
pm.start_servers = 10
|
||
|
|
pm.min_spare_servers = 5
|
||
|
|
pm.max_spare_servers = 20
|
||
|
|
pm.max_requests = 1000
|
||
|
|
pm.process_idle_timeout = 10s
|
||
|
|
|
||
|
|
; Status page for health checks
|
||
|
|
pm.status_path = /fpm-status
|
||
|
|
ping.path = /fpm-ping
|
||
|
|
ping.response = pong
|
||
|
|
|
||
|
|
; Logging
|
||
|
|
access.log = /proc/self/fd/2
|
||
|
|
slowlog = /proc/self/fd/2
|
||
|
|
request_slowlog_timeout = 5s
|
||
|
|
|
||
|
|
; Security
|
||
|
|
security.limit_extensions = .php
|