From 4adc8da23e6166e7156abbfe2d4fc654f5d3054c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 23 Jul 2019 16:26:55 +0200 Subject: - main package now recommends commonly used extensions and SAPI (json, mbstring, opcache, pdo, xml) - fix gd build options and dependencies - refresh provided configuration from upstream production values --- php.ini | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'php.ini') diff --git a/php.ini b/php.ini index 5e3ffc5..06adab5 100644 --- a/php.ini +++ b/php.ini @@ -359,6 +359,12 @@ zend.enable_gc = On ; Default: "" ;zend.script_encoding = +; Allows to include or exclude arguments from stack traces generated for exceptions +; Default: Off +; In production, it is recommended to turn this setting on to prohibit the output +; of sensitive information in stack traces +zend.exception_ignore_args = On + ;;;;;;;;;;;;;;;;; ; Miscellaneous ; ;;;;;;;;;;;;;;;;; @@ -595,6 +601,7 @@ report_memleaks = On ; ascii (all printable ASCII characters and NL) ; no-ctrl (all characters except control characters) ; all (all characters) +; raw (like "all", but messages are not split at newlines) ; http://php.net/syslog.filter ;syslog.filter = ascii @@ -1561,6 +1568,11 @@ zend.assertions = -1 ; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) ;mbstring.http_output_conv_mimetype= +; This directive specifies maximum stack depth for mbstring regular expressions. It is similar +; to the pcre.recursion_limit for PCRE. +; Default: 100000 +;mbstring.regex_stack_limit=100000 + [gd] ; Tell the jpeg decode to ignore warnings and try to create ; a gd image. The warning will then be displayed as notices -- cgit