From 26ae7a9ec7062b7ed3ab2eb0868fef6017924964 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Thu, 20 Dec 2018 17:12:53 +0100 Subject: [PATCH] fix php7.3-fpm pool duplicate port --- etc/nginx/conf.d/upstream.conf | 2 +- etc/php/7.3/fpm/pool.d/www.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/nginx/conf.d/upstream.conf b/etc/nginx/conf.d/upstream.conf index d2c984c..ef85aca 100644 --- a/etc/nginx/conf.d/upstream.conf +++ b/etc/nginx/conf.d/upstream.conf @@ -79,7 +79,7 @@ keepalive 5; # TCP/IP on loopback interface upstream php73 { -server 127.0.0.1:9090; +server 127.0.0.1:9093; } # load-balancing on unix socket diff --git a/etc/php/7.3/fpm/pool.d/www.conf b/etc/php/7.3/fpm/pool.d/www.conf index 975bad3..f8aab34 100644 --- a/etc/php/7.3/fpm/pool.d/www.conf +++ b/etc/php/7.3/fpm/pool.d/www.conf @@ -1,7 +1,7 @@ [www] user = www-data group = www-data -listen = 127.0.0.1:9090 +listen = 127.0.0.1:9093 listen.owner = www-data listen.group = www-data pm = ondemand