From 49e98618f6f10a609e6531d639d3c17a1f8e888e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 17 Nov 2014 10:16:45 +0100 Subject: PHP 5.6: more upstream change to fpm configuration --- php-fpm-www.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/php-fpm-www.conf b/php-fpm-www.conf index 727e457..9f6dfe8 100644 --- a/php-fpm-www.conf +++ b/php-fpm-www.conf @@ -32,8 +32,8 @@ group = apache ; a specific port; ; 'port' - to listen on a TCP socket to all IPv4 addresses on a ; specific port; -; '[::]:port' - to listen on a TCP socket to all addresses on a -; specific port; +; '[::]:port' - to listen on a TCP socket to all addresses +; (IPv6 and IPv4-mapped) on a specific port; ; '/path/to/unix/socket' - to listen on a unix socket. ; Note: This value is mandatory. listen = 127.0.0.1:9000 @@ -50,7 +50,7 @@ listen = 127.0.0.1:9000 ;listen.group = nobody ;listen.mode = 0660 -; List of ipv4 addresses of FastCGI clients which are allowed to connect. +; List of addresses (IPv4/IPv6) of FastCGI clients which are allowed to connect. ; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original ; PHP FCGI (5.2.2+). Makes sense only with a tcp listening socket. Each address ; must be separated by a comma. If this value is left blank, connections will be -- cgit