]> TLD Linux GIT Repositories - packages/php.git/blob - php-ini.patch
- updated to 7.2.34
[packages/php.git] / php-ini.patch
1 --- php-7.2.26/php.ini  2019-12-17 13:30:17.000000000 +0100
2 +++ php-7.2.26/php.ini  2019-12-22 17:52:48.548000000 +0100
3 @@ -82,6 +82,16 @@
4  ; much more verbose when it comes to errors. We recommend using the
5  ; development version only in development environments, as errors shown to
6  ; application users can inadvertently leak otherwise secure information.
7 +;
8 +; This is the default settings file for new PHP installations on TLD Linux.
9 +;
10 +; It is based mainly on php.ini-production, but with some changes made with
11 +; security in mind (http://php.net/manual/en/security.php).
12 +;
13 +; Please note, that in TLD Linux file /etc/php72/php.ini contains global
14 +; settings for all SAPIs (cgi, cli, apache...), and after reading this file
15 +; SAPI-specific file is included so you don't have to duplicate whole large
16 +; file to override only few options.
17  
18  ; This is php.ini-production INI file.
19  
20 @@ -149,7 +159,7 @@
21  ;   Production Value: 5
22  
23  ; short_open_tag
24 -;   Default Value: On
25 +;   Default Value: Off
26  ;   Development Value: Off
27  ;   Production Value: Off
28  
29 @@ -165,7 +175,7 @@
30  ;user_ini.filename = ".user.ini"
31  
32  ; To disable this feature set this option to empty value
33 -;user_ini.filename =
34 +user_ini.filename =
35  
36  ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
37  ;user_ini.cache_ttl = 300
38 @@ -185,7 +195,7 @@
39  ; documents, however this remains supported for backward compatibility reasons.
40  ; Note that this directive does not control the <?= shorthand tag, which can be
41  ; used regardless of this directive.
42 -; Default Value: On
43 +; Default Value: Off
44  ; Development Value: Off
45  ; Production Value: Off
46  ; http://php.net/short-open-tag
47 @@ -368,7 +378,7 @@
48  ; threat in any way, but it makes it possible to determine whether you use PHP
49  ; on your server or not.
50  ; http://php.net/expose-php
51 -expose_php = On
52 +expose_php = Off
53  
54  ;;;;;;;;;;;;;;;;;;;
55  ; Resource Limits ;
56 @@ -731,9 +741,7 @@
57  
58  ; Directory in which the loadable extensions (modules) reside.
59  ; http://php.net/extension-dir
60 -; extension_dir = "./"
61 -; On windows:
62 -; extension_dir = "ext"
63 +;extension_dir = "/usr/lib/php"
64  
65  ; Directory where the temporary files should be placed.
66  ; Defaults to the system default (see sys_get_temp_dir)
67 @@ -745,65 +753,6 @@
68  ; http://php.net/enable-dl
69  enable_dl = Off
70  
71 -; cgi.force_redirect is necessary to provide security running PHP as a CGI under
72 -; most web servers.  Left undefined, PHP turns this on by default.  You can
73 -; turn it off here AT YOUR OWN RISK
74 -; **You CAN safely turn this off for IIS, in fact, you MUST.**
75 -; http://php.net/cgi.force-redirect
76 -;cgi.force_redirect = 1
77 -
78 -; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
79 -; every request. PHP's default behavior is to disable this feature.
80 -;cgi.nph = 1
81 -
82 -; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
83 -; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
84 -; will look for to know it is OK to continue execution.  Setting this variable MAY
85 -; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
86 -; http://php.net/cgi.redirect-status-env
87 -;cgi.redirect_status_env =
88 -
89 -; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
90 -; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
91 -; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
92 -; this to 1 will cause PHP CGI to fix its paths to conform to the spec.  A setting
93 -; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
94 -; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
95 -; http://php.net/cgi.fix-pathinfo
96 -;cgi.fix_pathinfo=1
97 -
98 -; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
99 -; of the web tree and people will not be able to circumvent .htaccess security.
100 -; http://php.net/cgi.dicard-path
101 -;cgi.discard_path=1
102 -
103 -; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
104 -; security tokens of the calling client.  This allows IIS to define the
105 -; security context that the request runs under.  mod_fastcgi under Apache
106 -; does not currently support this feature (03/17/2002)
107 -; Set to 1 if running under IIS.  Default is zero.
108 -; http://php.net/fastcgi.impersonate
109 -;fastcgi.impersonate = 1
110 -
111 -; Disable logging through FastCGI connection. PHP's default behavior is to enable
112 -; this feature.
113 -;fastcgi.logging = 0
114 -
115 -; cgi.rfc2616_headers configuration option tells PHP what type of headers to
116 -; use when sending HTTP response code. If set to 0, PHP sends Status: header that
117 -; is supported by Apache. When this option is set to 1, PHP will send
118 -; RFC2616 compliant header.
119 -; Default is zero.
120 -; http://php.net/cgi.rfc2616-headers
121 -;cgi.rfc2616_headers = 0
122 -
123 -; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
124 -; (shebang) at the top of the running script. This line might be needed if the
125 -; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
126 -; mode skips this line and ignores its content if this directive is turned on.
127 -; http://php.net/cgi.check-shebang-line
128 -;cgi.check_shebang_line=1
129 -
130  ;;;;;;;;;;;;;;;;
131  ; File Uploads ;
132  ;;;;;;;;;;;;;;;;
133 @@ -958,19 +907,19 @@
134  ; Use of this INI entry is deprecated, use global input_encoding instead.
135  ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
136  ; The precedence is: default_charset < intput_encoding < iconv.input_encoding
137 -;iconv.input_encoding =
138 +iconv.input_encoding = UTF-8
139  
140  ; Use of this INI entry is deprecated, use global internal_encoding instead.
141  ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
142  ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
143 -;iconv.internal_encoding =
144 +iconv.internal_encoding = UTF-8
145  
146  ; Use of this INI entry is deprecated, use global output_encoding instead.
147  ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
148  ; The precedence is: default_charset < output_encoding < iconv.output_encoding
149  ; To use an output encoding conversion, iconv's output handler must be set
150  ; otherwise output encoding conversion cannot be performed.
151 -;iconv.output_encoding =
152 +iconv.output_encoding = UTF-8
153  
154  [imap]
155  ; rsh/ssh logins are disabled by default. Use this INI entry if you want to
156 @@ -1180,6 +1129,9 @@
157  ; http://php.net/mysqli.default-socket
158  mysqli.default_socket =
159  
160 +; The name of the character set to use as the default character set.
161 +;mysqli.connect_charset=utf8
162 +
163  ; Default host for mysql_connect() (doesn't apply in safe mode).
164  ; http://php.net/mysqli.default-host
165  mysqli.default_host =
166 @@ -1329,7 +1281,7 @@
167  
168  [browscap]
169  ; http://php.net/browscap
170 -;browscap = extra/browscap.ini
171 +;browscap = /usr/share/browscap/php_browscap.ini
172  
173  [Session]
174  ; Handler used to store/retrieve data.
175 @@ -1756,7 +1708,7 @@
176  
177  ; Sets the directory name where SOAP extension will put cache files.
178  ; http://php.net/soap.wsdl-cache-dir
179 -soap.wsdl_cache_dir="/tmp"
180 +soap.wsdl_cache_dir="/var/cache/php"
181  
182  ; (time to live) Sets the number of second while cached file will be used
183  ; instead of original one.
184 @@ -1777,134 +1729,6 @@
185  [dba]
186  ;dba.default_handler=
187  
188 -[opcache]
189 -; Determines if Zend OPCache is enabled
190 -;opcache.enable=1
191 -
192 -; Determines if Zend OPCache is enabled for the CLI version of PHP
193 -;opcache.enable_cli=0
194 -
195 -; The OPcache shared memory storage size.
196 -;opcache.memory_consumption=128
197 -
198 -; The amount of memory for interned strings in Mbytes.
199 -;opcache.interned_strings_buffer=8
200 -
201 -; The maximum number of keys (scripts) in the OPcache hash table.
202 -; Only numbers between 200 and 1000000 are allowed.
203 -;opcache.max_accelerated_files=10000
204 -
205 -; The maximum percentage of "wasted" memory until a restart is scheduled.
206 -;opcache.max_wasted_percentage=5
207 -
208 -; When this directive is enabled, the OPcache appends the current working
209 -; directory to the script key, thus eliminating possible collisions between
210 -; files with the same name (basename). Disabling the directive improves
211 -; performance, but may break existing applications.
212 -;opcache.use_cwd=1
213 -
214 -; When disabled, you must reset the OPcache manually or restart the
215 -; webserver for changes to the filesystem to take effect.
216 -;opcache.validate_timestamps=1
217 -
218 -; How often (in seconds) to check file timestamps for changes to the shared
219 -; memory storage allocation. ("1" means validate once per second, but only
220 -; once per request. "0" means always validate)
221 -;opcache.revalidate_freq=2
222 -
223 -; Enables or disables file search in include_path optimization
224 -;opcache.revalidate_path=0
225 -
226 -; If disabled, all PHPDoc comments are dropped from the code to reduce the
227 -; size of the optimized code.
228 -;opcache.save_comments=1
229 -
230 -; Allow file existence override (file_exists, etc.) performance feature.
231 -;opcache.enable_file_override=0
232 -
233 -; A bitmask, where each bit enables or disables the appropriate OPcache
234 -; passes
235 -;opcache.optimization_level=0xffffffff
236 -
237 -;opcache.inherited_hack=1
238 -;opcache.dups_fix=0
239 -
240 -; The location of the OPcache blacklist file (wildcards allowed).
241 -; Each OPcache blacklist file is a text file that holds the names of files
242 -; that should not be accelerated. The file format is to add each filename
243 -; to a new line. The filename may be a full path or just a file prefix
244 -; (i.e., /var/www/x  blacklists all the files and directories in /var/www
245 -; that start with 'x'). Line starting with a ; are ignored (comments).
246 -;opcache.blacklist_filename=
247 -
248 -; Allows exclusion of large files from being cached. By default all files
249 -; are cached.
250 -;opcache.max_file_size=0
251 -
252 -; Check the cache checksum each N requests.
253 -; The default value of "0" means that the checks are disabled.
254 -;opcache.consistency_checks=0
255 -
256 -; How long to wait (in seconds) for a scheduled restart to begin if the cache
257 -; is not being accessed.
258 -;opcache.force_restart_timeout=180
259 -
260 -; OPcache error_log file name. Empty string assumes "stderr".
261 -;opcache.error_log=
262 -
263 -; All OPcache errors go to the Web server log.
264 -; By default, only fatal errors (level 0) or errors (level 1) are logged.
265 -; You can also enable warnings (level 2), info messages (level 3) or
266 -; debug messages (level 4).
267 -;opcache.log_verbosity_level=1
268 -
269 -; Preferred Shared Memory back-end. Leave empty and let the system decide.
270 -;opcache.preferred_memory_model=
271 -
272 -; Protect the shared memory from unexpected writing during script execution.
273 -; Useful for internal debugging only.
274 -;opcache.protect_memory=0
275 -
276 -; Allows calling OPcache API functions only from PHP scripts which path is
277 -; started from specified string. The default "" means no restriction
278 -;opcache.restrict_api=
279 -
280 -; Mapping base of shared memory segments (for Windows only). All the PHP
281 -; processes have to map shared memory into the same address space. This
282 -; directive allows to manually fix the "Unable to reattach to base address"
283 -; errors.
284 -;opcache.mmap_base=
285 -
286 -; Enables and sets the second level cache directory.
287 -; It should improve performance when SHM memory is full, at server restart or
288 -; SHM reset. The default "" disables file based caching.
289 -;opcache.file_cache=
290 -
291 -; Enables or disables opcode caching in shared memory.
292 -;opcache.file_cache_only=0
293 -
294 -; Enables or disables checksum validation when script loaded from file cache.
295 -;opcache.file_cache_consistency_checks=1
296 -
297 -; Implies opcache.file_cache_only=1 for a certain process that failed to
298 -; reattach to the shared memory (for Windows only). Explicitly enabled file
299 -; cache is required.
300 -;opcache.file_cache_fallback=1
301 -
302 -; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
303 -; This should improve performance, but requires appropriate OS configuration.
304 -;opcache.huge_code_pages=1
305 -
306 -; Validate cached file permissions.
307 -;opcache.validate_permission=0
308 -
309 -; Prevent name collisions in chroot'ed environment.
310 -;opcache.validate_root=0
311 -
312 -; If specified, it produces opcode dumps for debugging different stages of
313 -; optimizations.
314 -;opcache.opt_debug_level=0
315 -
316  [curl]
317  ; A default value for the CURLOPT_CAINFO option. This is required to be an
318  ; absolute path.