summaryrefslogtreecommitdiffstats
path: root/php-fpm-www.conf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-10-14 09:31:19 +0200
committerRemi Collet <fedora@famillecollet.com>2015-10-14 09:31:19 +0200
commit1a48eff9d3674e1f6444325c68854067c56cd138 (patch)
tree6f7a574a386261eebe32cf0d1fce522146a3af32 /php-fpm-www.conf
parent6010cec7988b937329c5d8a6ee1619de025c25c4 (diff)
PHP 7.0.0RC5
Diffstat (limited to 'php-fpm-www.conf')
-rw-r--r--php-fpm-www.conf15
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.