Create upstream.conf

This commit is contained in:
VirtuBox 2017-12-14 05:53:02 +01:00 committed by GitHub
parent 77bd89cc6b
commit 5619663316
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# Common upstream settings
upstream php {
# server unix:/run/php5-fpm.sock;
server 127.0.0.1:9000;
}
upstream debug {
# Debug Pool
server 127.0.0.1:9001;
}
upstream php7 {
server 127.0.0.1:9070;
}
upstream debug7 {
# Debug Pool
server 127.0.0.1:9170;
}
upstream redis {
server 127.0.0.1:6379;
keepalive 10;
}
upstream netdata {
server 127.0.0.1:19999;
keepalive 64;
}