From 3537867e0dde0a054c1482f5deb2af1fe70b2843 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 18 Oct 2019 21:19:16 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 6 + wo/cli/templates/upstream.mustache | 172 ++++++++++++++--------------- 2 files changed, 92 insertions(+), 86 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f98030b..812e66e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] +### v3.9.9.4 - 2019-10-18 + +#### Changed + +- [STACK] New Nginx package built with libbrotli-dev for all linux distro supported by WordOps + #### Fixed - GPG keys error with previous EasyEngine Nginx repository diff --git a/wo/cli/templates/upstream.mustache b/wo/cli/templates/upstream.mustache index 446135d..27d290a 100644 --- a/wo/cli/templates/upstream.mustache +++ b/wo/cli/templates/upstream.mustache @@ -1,86 +1,86 @@ -# NGINX UPSTREAM CONFIGURATION - WO v3.9.8 -# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE -#------------------------------- -# PHP 5.6 -#------------------------------- -upstream php { -server 127.0.0.1:{{php}}; -} - -upstream debug { -server 127.0.0.1:{{debug}}; -} - - -#------------------------------- -# PHP 7.0 -#------------------------------- - -upstream php7 { -server 127.0.0.1:{{php7}}; -} -upstream debug7 { -# Debug Pool -server 127.0.0.1:{{debug7}}; -} - - -#------------------------------- -# PHP 7.2 -#------------------------------- - -# PHP 7.2 upstream with load-balancing on two unix sockets -upstream php72 { - least_conn; - - server unix:/var/run/php/php72-fpm.sock; - server unix:/var/run/php/php72-two-fpm.sock; - - keepalive 5; -} - -# PHP 7.2 debug -upstream debug72 { -# Debug Pool -server 127.0.0.1:9172; -} - -#------------------------------- -# PHP 7.3 -#------------------------------- - -# PHP 7.3 upstream with load-balancing on two unix sockets -upstream php73 { - least_conn; - - server unix:/var/run/php/php73-fpm.sock; - server unix:/var/run/php/php73-two-fpm.sock; - - keepalive 5; -} - -# PHP 7.3 debug -upstream debug73 { -# Debug Pool - server 127.0.0.1:9173; -} - -#------------------------------- -# Netdata -#------------------------------- - -# Netdata Monitoring Upstream -upstream netdata { - server 127.0.0.1:19999; - keepalive 64; -} - -#------------------------------- -# Redis -#------------------------------- - -# Redis cache upstream -upstream redis { - server 127.0.0.1:6379; - keepalive 10; -} +# NGINX UPSTREAM CONFIGURATION - WO v3.9.8 +# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE +#------------------------------- +# PHP 5.6 +#------------------------------- +upstream php { +server 127.0.0.1:{{php}}; +} + +upstream debug { +server 127.0.0.1:{{debug}}; +} + + +#------------------------------- +# PHP 7.0 +#------------------------------- + +upstream php7 { +server 127.0.0.1:{{php7}}; +} +upstream debug7 { +# Debug Pool +server 127.0.0.1:{{debug7}}; +} + + +#------------------------------- +# PHP 7.2 +#------------------------------- + +# PHP 7.2 upstream with load-balancing on two unix sockets +upstream php72 { + least_conn; + + server unix:/var/run/php/php72-fpm.sock; + server unix:/var/run/php/php72-two-fpm.sock; + + keepalive 5; +} + +# PHP 7.2 debug +upstream debug72 { +# Debug Pool +server 127.0.0.1:9172; +} + +#------------------------------- +# PHP 7.3 +#------------------------------- + +# PHP 7.3 upstream with load-balancing on two unix sockets +upstream php73 { + least_conn; + + server unix:/var/run/php/php73-fpm.sock; + server unix:/var/run/php/php73-two-fpm.sock; + + keepalive 5; +} + +# PHP 7.3 debug +upstream debug73 { +# Debug Pool + server 127.0.0.1:9173; +} + +#------------------------------- +# Netdata +#------------------------------- + +# Netdata Monitoring Upstream +upstream netdata { + server 127.0.0.1:19999; + keepalive 64; +} + +#------------------------------- +# Redis +#------------------------------- + +# Redis cache upstream +upstream redis { + server 127.0.0.1:6379; + keepalive 10; +}