Compare commits
No commits in common. "main" and "3.20.7" have entirely different histories.
3 changed files with 2 additions and 13 deletions
|
@ -87,14 +87,8 @@ ENTRYPOINT ["/bin/docker-entrypoint.sh"]
|
||||||
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
|
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
|
||||||
|
|
||||||
ENV nginx_root_directory=/var/www/html/public \
|
ENV nginx_root_directory=/var/www/html/public \
|
||||||
nginx_fastcgi_read_timeout=100 \
|
|
||||||
client_max_body_size=2M \
|
client_max_body_size=2M \
|
||||||
clear_env=no \
|
clear_env=no \
|
||||||
pm_mode=dynamic \
|
|
||||||
pm_start_servers=20 \
|
|
||||||
pm_min_spare_servers=10 \
|
|
||||||
pm_max_spare_servers=20 \
|
|
||||||
pm_max_requests=1000 \
|
|
||||||
allow_url_fopen=On \
|
allow_url_fopen=On \
|
||||||
allow_url_include=Off \
|
allow_url_include=Off \
|
||||||
display_errors=Off \
|
display_errors=Off \
|
||||||
|
|
|
@ -76,8 +76,6 @@ http {
|
||||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||||
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
||||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||||
fastcgi_index index.php;
|
|
||||||
fastcgi_read_timeout ${nginx_fastcgi_read_timeout};
|
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
|
||||||
# Pass the original forwarded_scheme and HTTPS status to the PHP backend
|
# Pass the original forwarded_scheme and HTTPS status to the PHP backend
|
||||||
|
|
|
@ -34,7 +34,7 @@ listen.group = nobody
|
||||||
pm.status_path = /fpm-status
|
pm.status_path = /fpm-status
|
||||||
|
|
||||||
; Ondemand process manager
|
; Ondemand process manager
|
||||||
pm = $pm_mode
|
pm = ondemand
|
||||||
|
|
||||||
; The number of child processes to be created when pm is set to 'static' and the
|
; The number of child processes to be created when pm is set to 'static' and the
|
||||||
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
||||||
|
@ -46,9 +46,6 @@ pm = $pm_mode
|
||||||
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
||||||
; Note: This value is mandatory.
|
; Note: This value is mandatory.
|
||||||
pm.max_children = 100
|
pm.max_children = 100
|
||||||
pm.start_servers = $pm_start_servers
|
|
||||||
pm.min_spare_servers = $pm_min_spare_servers
|
|
||||||
pm.max_spare_servers = $pm_max_spare_servers
|
|
||||||
|
|
||||||
; The number of seconds after which an idle process will be killed.
|
; The number of seconds after which an idle process will be killed.
|
||||||
; Note: Used only when pm is set to 'ondemand'
|
; Note: Used only when pm is set to 'ondemand'
|
||||||
|
@ -59,7 +56,7 @@ pm.process_idle_timeout = 10s;
|
||||||
; This can be useful to work around memory leaks in 3rd party libraries. For
|
; This can be useful to work around memory leaks in 3rd party libraries. For
|
||||||
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
||||||
; Default Value: 0
|
; Default Value: 0
|
||||||
pm.max_requests = $pm_max_requests
|
pm.max_requests = 1000
|
||||||
|
|
||||||
; Make sure the FPM workers can reach the environment variables for configuration
|
; Make sure the FPM workers can reach the environment variables for configuration
|
||||||
clear_env = $clear_env
|
clear_env = $clear_env
|
||||||
|
|
Loading…
Add table
Reference in a new issue