add new upstreams

add php7.1-fpm and php7.2-fpm
This commit is contained in:
VirtuBox 2018-02-04 14:30:02 +01:00 committed by GitHub
parent c82bc08204
commit 6d6cd37039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 3 deletions

View File

@ -7,19 +7,28 @@ upstream debug {
# Debug Pool
server 127.0.0.1:9001;
}
# php7.0-fpm
upstream php7 {
server 127.0.0.1:9070;
}
upstream debug7 {
# Debug Pool
server 127.0.0.1:9170;
}
# php7.1-fpm
upstream php71 {
server 127.0.0.1:9080;
}
# php7.2-fpm
upstream php72 {
server 127.0.0.1:9090;
}
# redis
upstream redis {
server 127.0.0.1:6379;
keepalive 10;
}
# netdata (optional)
upstream netdata {
server 127.0.0.1:19999;
keepalive 64;