From 1876b23ba96fd5c263f787447f942c2b6957fa12 Mon Sep 17 00:00:00 2001 From: "dave@tiredofit.ca" Date: Mon, 18 Jul 2022 19:00:10 -0700 Subject: [PATCH] Release 7.0.7 - See CHANGELOG.md --- CHANGELOG.md | 6 ++++++ install/assets/functions/20-php-fpm | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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}"