|
129 | 129 | ; Development Value: 4096 |
130 | 130 | ; Production Value: 4096 |
131 | 131 |
|
132 | | -; register_argc_argv |
133 | | -; Default Value: On |
134 | | -; Development Value: Off |
135 | | -; Production Value: Off |
136 | | - |
137 | 132 | ; request_order |
138 | 133 | ; Default Value: None |
139 | 134 | ; Development Value: "GP" |
@@ -327,11 +322,6 @@ serialize_precision = -1 |
327 | 322 | ; https://php.net/disable-functions |
328 | 323 | disable_functions = |
329 | 324 |
|
330 | | -; This directive allows you to disable certain classes. |
331 | | -; It receives a comma-delimited list of class names. |
332 | | -; https://php.net/disable-classes |
333 | | -disable_classes = |
334 | | - |
335 | 325 | ; Colors for Syntax Highlighting mode. Anything that's acceptable in |
336 | 326 | ; <span style="color: ???????"> would work. |
337 | 327 | ; https://php.net/syntax-highlighting |
@@ -436,6 +426,7 @@ max_input_time = 60 |
436 | 426 | ; Maximum amount of memory a script may consume |
437 | 427 | ; https://php.net/memory-limit |
438 | 428 | memory_limit = 2048M |
| 429 | +max_memory_limit = -1 |
439 | 430 |
|
440 | 431 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
441 | 432 | ; Error handling and logging ; |
@@ -536,12 +527,6 @@ ignore_repeated_errors = Off |
536 | 527 | ; https://php.net/ignore-repeated-source |
537 | 528 | ignore_repeated_source = Off |
538 | 529 |
|
539 | | -; If this parameter is set to Off, then memory leaks will not be shown (on |
540 | | -; stdout or in the log). This is only effective in a debug compile, and if |
541 | | -; error reporting includes E_WARNING in the allowed list |
542 | | -; https://php.net/report-memleaks |
543 | | -report_memleaks = On |
544 | | - |
545 | 530 | ; This setting is off by default. |
546 | 531 | ;report_zend_debug = 0 |
547 | 532 |
|
@@ -620,6 +605,12 @@ report_memleaks = On |
620 | 605 | ; Development value: 0 |
621 | 606 | ; Production value: 0 |
622 | 607 |
|
| 608 | +; This directive controls whether PHP will output the backtrace of fatal errors. |
| 609 | +; Default Value: On |
| 610 | +; Development Value: On |
| 611 | +; Production Value: On |
| 612 | +;fatal_error_backtraces = On |
| 613 | + |
623 | 614 | ;;;;;;;;;;;;;;;;; |
624 | 615 | ; Data Handling ; |
625 | 616 | ;;;;;;;;;;;;;;;;; |
@@ -669,14 +660,12 @@ request_order = "GP" |
669 | 660 | ; that were passed when the script was invoked. These arrays are extremely |
670 | 661 | ; useful when running scripts from the command line. When this directive is |
671 | 662 | ; enabled, registering these variables consumes CPU cycles and memory each time |
672 | | -; a script is executed. For performance reasons, this feature should be disabled |
673 | | -; on production servers. |
674 | | -; Note: This directive is hardcoded to On for the CLI SAPI |
675 | | -; Default Value: On |
676 | | -; Development Value: Off |
677 | | -; Production Value: Off |
| 663 | +; a script is executed. For security reasons, this feature should be disabled |
| 664 | +; for non-CLI SAPIs. |
| 665 | +; Note: This directive is ignored for the CLI SAPI |
| 666 | +; This directive is deprecated. |
678 | 667 | ; https://php.net/register-argc-argv |
679 | | -register_argc_argv = Off |
| 668 | +;register_argc_argv = Off |
680 | 669 |
|
681 | 670 | ; When enabled, the ENV, REQUEST and SERVER variables are created when they're |
682 | 671 | ; first used (Just In Time) instead of when the script starts. If these |
@@ -817,6 +806,12 @@ enable_dl = Off |
817 | 806 | ; https://php.net/fastcgi.impersonate |
818 | 807 | ;fastcgi.impersonate = 1 |
819 | 808 |
|
| 809 | +; Prevent decoding of SCRIPT_FILENAME when using Apache ProxyPass or |
| 810 | +; ProxyPassMatch. This should be used if script file paths are not stored |
| 811 | +; in an encoded format on the file system. |
| 812 | +; Default is 1. |
| 813 | +;fastcgi.script_path_encoded = 0 |
| 814 | + |
820 | 815 | ; Disable logging through FastCGI connection. PHP's default behavior is to enable |
821 | 816 | ; this feature. |
822 | 817 | ;fastcgi.logging = 0 |
@@ -953,8 +948,6 @@ default_socket_timeout = 60 |
953 | 948 | ;extension=xsl |
954 | 949 | ;extension=zip |
955 | 950 |
|
956 | | -;zend_extension=opcache |
957 | | - |
958 | 951 | ;;;;;;;;;;;;;;;;;;; |
959 | 952 | ; Module Settings ; |
960 | 953 | ;;;;;;;;;;;;;;;;;;; |
@@ -1010,8 +1003,12 @@ cli_server.color = On |
1010 | 1003 | ; This directive allows you to produce PHP errors when some error |
1011 | 1004 | ; happens within intl functions. The value is the level of the error produced. |
1012 | 1005 | ; Default is 0, which does not produce any errors. |
| 1006 | +; This directive is deprecated. |
1013 | 1007 | ;intl.error_level = E_WARNING |
1014 | | -;intl.use_exceptions = 0 |
| 1008 | +; If enabled this directive indicates that when an error occurs within an |
| 1009 | +; intl function a IntlException should be thrown. |
| 1010 | +; Default is Off, which means errors need to be handled manually. |
| 1011 | +;intl.use_exceptions = On |
1015 | 1012 |
|
1016 | 1013 | [sqlite3] |
1017 | 1014 | ; Directory pointing to SQLite3 extensions |
@@ -1089,6 +1086,14 @@ mail.add_x_header = Off |
1089 | 1086 | ; RFC 2822 non conformant MTA. |
1090 | 1087 | mail.mixed_lf_and_crlf = Off |
1091 | 1088 |
|
| 1089 | +; Control line ending mode for mail messages and headers. |
| 1090 | +; Possible values: "crlf" (default), "lf", "mixed", "os" |
| 1091 | +; - crlf: Use CRLF line endings |
| 1092 | +; - lf: Use LF line endings only (converts CRLF in message to LF) |
| 1093 | +; - mixed: Same as mail.mixed_lf_and_crlf = On |
| 1094 | +; - os: Use CRLF on Windows, LF on other systems |
| 1095 | +mail.cr_lf_mode = crlf |
| 1096 | + |
1092 | 1097 | ; The path to a log file that will log all mail() calls. Log entries include |
1093 | 1098 | ; the full path of the script, line number, To address and headers. |
1094 | 1099 | ;mail.log = |
@@ -1312,6 +1317,9 @@ session.use_cookies = 1 |
1312 | 1317 | ; https://php.net/session.cookie-secure |
1313 | 1318 | ;session.cookie_secure = |
1314 | 1319 |
|
| 1320 | +; https://php.net/session.cookie-partitioned |
| 1321 | +;session.cookie_partitioned = 0 |
| 1322 | + |
1315 | 1323 | ; This option forces PHP to fetch and use a cookie for storing and maintaining |
1316 | 1324 | ; the session id. We encourage this operation as it's very helpful in combating |
1317 | 1325 | ; session hijacking when not specifying and managing your own session id. It is |
@@ -1851,6 +1859,14 @@ ldap.max_links = -1 |
1851 | 1859 | ; SSL stream context option. |
1852 | 1860 | ;openssl.capath= |
1853 | 1861 |
|
| 1862 | +; The libctx is an OpenSSL library context. OpenSSL defines a default library |
| 1863 | +; context, but PHP OpenSSL also defines its own library context to avoid |
| 1864 | +; interference with other libraries using OpenSSL and to provide an independent |
| 1865 | +; context for each thread in ZTS. Possible values: |
| 1866 | +; "custom" - use a custom library context (default) |
| 1867 | +; "default" - use the default OpenSSL library context |
| 1868 | +;openssl.libctx=custom |
| 1869 | + |
1854 | 1870 | [ffi] |
1855 | 1871 | ; FFI API restriction. Possible values: |
1856 | 1872 | ; "preload" - enabled in CLI scripts and preloaded files (default) |
|
0 commit comments