diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-10-14 09:31:19 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-10-14 09:31:19 +0200 |
commit | 62f9089ad769f1666241a33d6b145167d495fa75 (patch) | |
tree | c9c6928c22a3601d9a6a80306d72ccf985533e8b /php-fpm-www.conf | |
parent | a47f758b1748627d67cfade5cb1617e31b2f941e (diff) |
PHP 7.0.0RC5
Diffstat (limited to 'php-fpm-www.conf')
-rw-r--r-- | php-fpm-www.conf | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/php-fpm-www.conf b/php-fpm-www.conf index b0ad693..fc85692 100644 --- a/php-fpm-www.conf +++ b/php-fpm-www.conf @@ -5,6 +5,7 @@ ; Per pool prefix ; It only applies on the following directives: +; - 'access.log' ; - 'slowlog' ; - 'listen' (unixsocket) ; - 'chroot' @@ -30,17 +31,15 @@ group = apache ; 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 IPv4 addresses on a -; specific port; -; '[::]:port' - to listen on a TCP socket to all addresses +; '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 ; Set listen(2) backlog. -; Default Value: 65535 -;listen.backlog = 65535 +; Default Value: 511 +;listen.backlog = 511 ; Set permissions for unix socket, if one is used. In Linux, read/write ; permissions must be set in order to allow connections from a web server. @@ -302,9 +301,13 @@ pm.max_spare_servers = 35 ; %t: server time the request was received ; it can accept a strftime(3) format: ; %d/%b/%Y:%H:%M:%S %z (default) +; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag +; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t ; %T: time the log has been written (the request has finished) ; it can accept a strftime(3) format: ; %d/%b/%Y:%H:%M:%S %z (default) +; The strftime(3) format must be encapsuled in a %{<strftime_format>}t tag +; e.g. for a ISO8601 formatted timestring, use: %{%Y-%m-%dT%H:%M:%S%z}t ; %u: remote user ; ; Default: "%R - %u %t \"%m %r\" %s" @@ -375,7 +378,7 @@ slowlog = /var/log/php-fpm/www-slow.log ; exectute php code. ; Note: set an empty value to allow all extensions. ; Default Value: .php -;security.limit_extensions = .php .php3 .php4 .php5 +;security.limit_extensions = .php .php3 .php4 .php5 .php7 ; Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from ; the current environment. |