diff --git a/CHANGELOG.md b/CHANGELOG.md index f17cc00..201c392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.0.7 2022-07-18 + + ### Changed + - Fix for keepalives in upstream + + ## 7.0.6 2022-07-09 ### Changed diff --git a/install/assets/functions/20-php-fpm b/install/assets/functions/20-php-fpm index c77cd65..bc5ebb2 100755 --- a/install/assets/functions/20-php-fpm +++ b/install/assets/functions/20-php-fpm @@ -171,7 +171,7 @@ phpfpm_configure_nginx() { php_fpm_hosts=$(echo "${PHP_FPM_HOST}" | tr "," "\n") echo "upstream php-fpm-upstream {" >> /etc/nginx/snippets/php-fpm-upstream.conf - echo " ${upstream_keepalive}" >> /etc/nginx/snippets/authentication/php-fpm-upstream.conf + echo " ${upstream_keepalive}" >> /etc/nginx/snippets/php-fpm-upstream.conf for host in $php_fpm_hosts; do if [[ ${host} != *":"* ]];then php_listen_port=":${PHP_FPM_LISTEN_PORT}"