summaryrefslogtreecommitdiffstats
path: root/php-fpm-www.conf
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-12-04 07:00:14 +0100
committerRemi Collet <remi@remirepo.net>2018-12-04 07:00:14 +0100
commitbea02396728037254ec18debf33f504845fba2ea (patch)
treed7ce902987bc7c349be0f5ed82236e9b0418ddf3 /php-fpm-www.conf
parentae710edd8a0eb3e97e77b515e34f3f6e73853415 (diff)
refresh FPM configuration from upstream
Diffstat (limited to 'php-fpm-www.conf')
-rw-r--r--php-fpm-www.conf8
1 files changed, 6 insertions, 2 deletions
diff --git a/php-fpm-www.conf b/php-fpm-www.conf
index 6108783..17bbc72 100644
--- a/php-fpm-www.conf
+++ b/php-fpm-www.conf
@@ -1,5 +1,5 @@
; Start a new pool named 'www'.
-; the variable $pool can we used in any directive and will be replaced by the
+; the variable $pool can be used in any directive and will be replaced by the
; pool name ('www' here)
[www]
@@ -330,6 +330,10 @@ slowlog = /var/log/php-fpm/www-slow.log
; Default Value: 0
;request_slowlog_timeout = 0
+; Depth of slow log stack trace.
+; Default Value: 20
+;request_slowlog_trace_depth = 20
+
; The timeout for serving a single request after which the worker process will
; be killed. This option should be used when the 'max_execution_time' ini option
; does not stop script execution for some reason. A value of '0' means 'off'.
@@ -381,7 +385,7 @@ slowlog = /var/log/php-fpm/www-slow.log
; Limits the extensions of the main script FPM will allow to parse. This can
; prevent configuration mistakes on the web server side. You should only limit
; FPM to .php extensions to prevent malicious users to use other extensions to
-; exectute php code.
+; execute php code.
; Note: set an empty value to allow all extensions.
; Default Value: .php
;security.limit_extensions = .php .php3 .php4 .php5 .php7