diff options
author | Remi Collet <remi@php.net> | 2014-11-16 17:59:36 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2014-11-16 17:59:36 +0100 |
commit | 23fd22f9ede39c5885a332cf6e6f5785c5f3fcba (patch) | |
tree | 9b60ccd7af7b20fec008bf8f29fd71e1a98c7e86 /sapi/fpm/php-fpm.conf.in | |
parent | 69b9381901e8ab9372ef034a54833461c9e7bb76 (diff) | |
download | php-git-23fd22f9ede39c5885a332cf6e6f5785c5f3fcba.tar.gz |
improve comments about FPM listen option
Diffstat (limited to 'sapi/fpm/php-fpm.conf.in')
-rw-r--r-- | sapi/fpm/php-fpm.conf.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sapi/fpm/php-fpm.conf.in b/sapi/fpm/php-fpm.conf.in index 631bc46f42..f22c2ff8b7 100644 --- a/sapi/fpm/php-fpm.conf.in +++ b/sapi/fpm/php-fpm.conf.in @@ -150,11 +150,13 @@ group = @php_fpm_group@ ; The address on which to accept FastCGI requests. ; Valid syntaxes are: -; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on +; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on ; a specific port; ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on ; a specific port; -; 'port' - to listen on a TCP socket to all addresses on a +; '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; ; '/path/to/unix/socket' - to listen on a unix socket. ; Note: This value is mandatory. |