Update changelog
This commit is contained in:
@@ -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.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
|
#### Fixed
|
||||||
|
|
||||||
- GPG keys error with previous EasyEngine Nginx repository
|
- GPG keys error with previous EasyEngine Nginx repository
|
||||||
|
|||||||
@@ -1,86 +1,86 @@
|
|||||||
# NGINX UPSTREAM CONFIGURATION - WO v3.9.8
|
# NGINX UPSTREAM CONFIGURATION - WO v3.9.8
|
||||||
# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE
|
# DO NOT MODIFY, ALL CHANGES WILL BE LOST AFTER AN WordOps (wo) UPDATE
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# PHP 5.6
|
# PHP 5.6
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
upstream php {
|
upstream php {
|
||||||
server 127.0.0.1:{{php}};
|
server 127.0.0.1:{{php}};
|
||||||
}
|
}
|
||||||
|
|
||||||
upstream debug {
|
upstream debug {
|
||||||
server 127.0.0.1:{{debug}};
|
server 127.0.0.1:{{debug}};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# PHP 7.0
|
# PHP 7.0
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|
||||||
upstream php7 {
|
upstream php7 {
|
||||||
server 127.0.0.1:{{php7}};
|
server 127.0.0.1:{{php7}};
|
||||||
}
|
}
|
||||||
upstream debug7 {
|
upstream debug7 {
|
||||||
# Debug Pool
|
# Debug Pool
|
||||||
server 127.0.0.1:{{debug7}};
|
server 127.0.0.1:{{debug7}};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# PHP 7.2
|
# PHP 7.2
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|
||||||
# PHP 7.2 upstream with load-balancing on two unix sockets
|
# PHP 7.2 upstream with load-balancing on two unix sockets
|
||||||
upstream php72 {
|
upstream php72 {
|
||||||
least_conn;
|
least_conn;
|
||||||
|
|
||||||
server unix:/var/run/php/php72-fpm.sock;
|
server unix:/var/run/php/php72-fpm.sock;
|
||||||
server unix:/var/run/php/php72-two-fpm.sock;
|
server unix:/var/run/php/php72-two-fpm.sock;
|
||||||
|
|
||||||
keepalive 5;
|
keepalive 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
# PHP 7.2 debug
|
# PHP 7.2 debug
|
||||||
upstream debug72 {
|
upstream debug72 {
|
||||||
# Debug Pool
|
# Debug Pool
|
||||||
server 127.0.0.1:9172;
|
server 127.0.0.1:9172;
|
||||||
}
|
}
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# PHP 7.3
|
# PHP 7.3
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|
||||||
# PHP 7.3 upstream with load-balancing on two unix sockets
|
# PHP 7.3 upstream with load-balancing on two unix sockets
|
||||||
upstream php73 {
|
upstream php73 {
|
||||||
least_conn;
|
least_conn;
|
||||||
|
|
||||||
server unix:/var/run/php/php73-fpm.sock;
|
server unix:/var/run/php/php73-fpm.sock;
|
||||||
server unix:/var/run/php/php73-two-fpm.sock;
|
server unix:/var/run/php/php73-two-fpm.sock;
|
||||||
|
|
||||||
keepalive 5;
|
keepalive 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
# PHP 7.3 debug
|
# PHP 7.3 debug
|
||||||
upstream debug73 {
|
upstream debug73 {
|
||||||
# Debug Pool
|
# Debug Pool
|
||||||
server 127.0.0.1:9173;
|
server 127.0.0.1:9173;
|
||||||
}
|
}
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Netdata
|
# Netdata
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|
||||||
# Netdata Monitoring Upstream
|
# Netdata Monitoring Upstream
|
||||||
upstream netdata {
|
upstream netdata {
|
||||||
server 127.0.0.1:19999;
|
server 127.0.0.1:19999;
|
||||||
keepalive 64;
|
keepalive 64;
|
||||||
}
|
}
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Redis
|
# Redis
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
|
|
||||||
# Redis cache upstream
|
# Redis cache upstream
|
||||||
upstream redis {
|
upstream redis {
|
||||||
server 127.0.0.1:6379;
|
server 127.0.0.1:6379;
|
||||||
keepalive 10;
|
keepalive 10;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user