diff --git a/mod_php_install.sh b/mod_php_install.sh index 94b7878..bff1362 100755 --- a/mod_php_install.sh +++ b/mod_php_install.sh @@ -852,14 +852,14 @@ if $WITH_PHP_FPM_SUPPORT ; then FPM_POOL_MAX_CHILDREN="" while [[ "X$FPM_POOL_MAX_CHILDREN" = "X" ]]; do - echononl "pm.max_requests: [$DEFAULT_FPM_POOL_MAX_CHILDREN] " + echononl "pm.max_children: [$DEFAULT_FPM_POOL_MAX_CHILDREN] " read FPM_POOL_MAX_CHILDREN if [ "X$FPM_POOL_MAX_CHILDREN" = "X" ]; then FPM_POOL_MAX_CHILDREN=$DEFAULT_FPM_POOL_MAX_CHILDREN break fi if ! is_int $FPM_POOL_MAX_CHILDREN ; then - warn "Wrong value for pm.max_request was given (mus be an integer). Reenter again" + warn "Wrong value for pm.max_children was given (mus be an integer). Reenter again" FPM_POOL_MAX_CHILDREN="" continue fi