Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions php/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ USER skpr
# Configuration which can be overriden.
# See /etc/php/php-fpm.conf
ENV PHP_FPM_PORT=9000 \
PHP_FPM_PROCESS_MANAGER=dynamic \
PHP_FPM_MAX_CHILDREN=20 \
PHP_FPM_START_SERVERS=2 \
PHP_FPM_MIN_SPARE_SERVERS=2 \
Expand Down
2 changes: 1 addition & 1 deletion php/fpm/php-fpm.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ listen = [::]:${PHP_FPM_PORT}

chdir = /data/app

pm = dynamic
pm = ${PHP_FPM_PROCESS_MANAGER}
pm.max_children = ${PHP_FPM_MAX_CHILDREN}
pm.start_servers = ${PHP_FPM_START_SERVERS}
pm.min_spare_servers = ${PHP_FPM_MIN_SPARE_SERVERS}
Expand Down