]> TLD Linux GIT Repositories - packages/php.git/blob - php-ini.patch
- updated to 8.3.6
[packages/php.git] / php-ini.patch
1 --- php-8.0.0/php.ini   2020-11-24 18:04:03.000000000 +0100
2 +++ php-8.0.0/php.ini   2020-12-05 23:44:57.718592809 +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/php80/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 the php.ini-production INI file.
19  
20 @@ -145,7 +155,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 @@ -171,7 +181,7 @@
30  ;user_ini.filename = ".user.ini"
31  
32  ; To disable this feature set this option to an 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 @@ -191,7 +201,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 @@ -397,7 +407,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 @@ -765,9 +775,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 @@ -779,64 +787,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 -;cgi.discard_path=1
101 -
102 -; FastCGI under IIS supports the ability to impersonate
103 -; security tokens of the calling client.  This allows IIS to define the
104 -; security context that the request runs under.  mod_fastcgi under Apache
105 -; does not currently support this feature (03/17/2002)
106 -; Set to 1 if running under IIS.  Default is zero.
107 -; http://php.net/fastcgi.impersonate
108 -;fastcgi.impersonate = 1
109 -
110 -; Disable logging through FastCGI connection. PHP's default behavior is to enable
111 -; this feature.
112 -;fastcgi.logging = 0
113 -
114 -; cgi.rfc2616_headers configuration option tells PHP what type of headers to
115 -; use when sending HTTP response code. If set to 0, PHP sends Status: header that
116 -; is supported by Apache. When this option is set to 1, PHP will send
117 -; RFC2616 compliant header.
118 -; Default is zero.
119 -; http://php.net/cgi.rfc2616-headers
120 -;cgi.rfc2616_headers = 0
121 -
122 -; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
123 -; (shebang) at the top of the running script. This line might be needed if the
124 -; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
125 -; mode skips this line and ignores its content if this directive is turned on.
126 -; http://php.net/cgi.check-shebang-line
127 -;cgi.check_shebang_line=1
128 -
129  ;;;;;;;;;;;;;;;;
130  ; File Uploads ;
131  ;;;;;;;;;;;;;;;;
132 @@ -994,19 +944,19 @@
133  ; Use of this INI entry is deprecated, use global input_encoding instead.
134  ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
135  ; The precedence is: default_charset < input_encoding < iconv.input_encoding
136 -;iconv.input_encoding =
137 +iconv.input_encoding = UTF-8
138  
139  ; Use of this INI entry is deprecated, use global internal_encoding instead.
140  ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
141  ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
142 -;iconv.internal_encoding =
143 +iconv.internal_encoding = UTF-8
144  
145  ; Use of this INI entry is deprecated, use global output_encoding instead.
146  ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
147  ; The precedence is: default_charset < output_encoding < iconv.output_encoding
148  ; To use an output encoding conversion, iconv's output handler must be set
149  ; otherwise output encoding conversion cannot be performed.
150 -;iconv.output_encoding =
151 +iconv.output_encoding = UTF-8
152  
153  [imap]
154  ; rsh/ssh logins are disabled by default. Use this INI entry if you want to
155 @@ -1172,6 +1122,9 @@
156  ; http://php.net/mysqli.default-socket
157  mysqli.default_socket =
158  
159 +; The name of the character set to use as the default character set.
160 +;mysqli.connect_charset=utf8
161 +
162  ; Default host for mysqli_connect() (doesn't apply in safe mode).
163  ; http://php.net/mysqli.default-host
164  mysqli.default_host =
165 @@ -1313,7 +1266,7 @@
166  
167  [browscap]
168  ; http://php.net/browscap
169 -;browscap = extra/browscap.ini
170 +;browscap = /usr/share/browscap/php_browscap.ini
171  
172  [Session]
173  ; Handler used to store/retrieve data.
174 @@ -1736,7 +1689,7 @@
175  
176  ; Sets the directory name where SOAP extension will put cache files.
177  ; http://php.net/soap.wsdl-cache-dir
178 -soap.wsdl_cache_dir="/tmp"
179 +soap.wsdl_cache_dir="/var/cache/php"
180  
181  ; (time to live) Sets the number of second while cached file will be used
182  ; instead of original one.
183 @@ -1757,160 +1710,6 @@
184  [dba]
185  ;dba.default_handler=
186  
187 -[opcache]
188 -; Determines if Zend OPCache is enabled
189 -;opcache.enable=1
190 -
191 -; Determines if Zend OPCache is enabled for the CLI version of PHP
192 -;opcache.enable_cli=0
193 -
194 -; The OPcache shared memory storage size.
195 -;opcache.memory_consumption=128
196 -
197 -; The amount of memory for interned strings in Mbytes.
198 -;opcache.interned_strings_buffer=8
199 -
200 -; The maximum number of keys (scripts) in the OPcache hash table.
201 -; Only numbers between 200 and 1000000 are allowed.
202 -;opcache.max_accelerated_files=10000
203 -
204 -; The maximum percentage of "wasted" memory until a restart is scheduled.
205 -;opcache.max_wasted_percentage=5
206 -
207 -; When this directive is enabled, the OPcache appends the current working
208 -; directory to the script key, thus eliminating possible collisions between
209 -; files with the same name (basename). Disabling the directive improves
210 -; performance, but may break existing applications.
211 -;opcache.use_cwd=1
212 -
213 -; When disabled, you must reset the OPcache manually or restart the
214 -; webserver for changes to the filesystem to take effect.
215 -;opcache.validate_timestamps=1
216 -
217 -; How often (in seconds) to check file timestamps for changes to the shared
218 -; memory storage allocation. ("1" means validate once per second, but only
219 -; once per request. "0" means always validate)
220 -;opcache.revalidate_freq=2
221 -
222 -; Enables or disables file search in include_path optimization
223 -;opcache.revalidate_path=0
224 -
225 -; If disabled, all PHPDoc comments are dropped from the code to reduce the
226 -; size of the optimized code.
227 -;opcache.save_comments=1
228 -
229 -; If enabled, compilation warnings (including notices and deprecations) will
230 -; be recorded and replayed each time a file is included. Otherwise, compilation
231 -; warnings will only be emitted when the file is first cached.
232 -;opcache.record_warnings=0
233 -
234 -; Allow file existence override (file_exists, etc.) performance feature.
235 -;opcache.enable_file_override=0
236 -
237 -; A bitmask, where each bit enables or disables the appropriate OPcache
238 -; passes
239 -;opcache.optimization_level=0x7FFFBFFF
240 -
241 -;opcache.dups_fix=0
242 -
243 -; The location of the OPcache blacklist file (wildcards allowed).
244 -; Each OPcache blacklist file is a text file that holds the names of files
245 -; that should not be accelerated. The file format is to add each filename
246 -; to a new line. The filename may be a full path or just a file prefix
247 -; (i.e., /var/www/x  blacklists all the files and directories in /var/www
248 -; that start with 'x'). Line starting with a ; are ignored (comments).
249 -;opcache.blacklist_filename=
250 -
251 -; Allows exclusion of large files from being cached. By default all files
252 -; are cached.
253 -;opcache.max_file_size=0
254 -
255 -; Check the cache checksum each N requests.
256 -; The default value of "0" means that the checks are disabled.
257 -;opcache.consistency_checks=0
258 -
259 -; How long to wait (in seconds) for a scheduled restart to begin if the cache
260 -; is not being accessed.
261 -;opcache.force_restart_timeout=180
262 -
263 -; OPcache error_log file name. Empty string assumes "stderr".
264 -;opcache.error_log=
265 -
266 -; All OPcache errors go to the Web server log.
267 -; By default, only fatal errors (level 0) or errors (level 1) are logged.
268 -; You can also enable warnings (level 2), info messages (level 3) or
269 -; debug messages (level 4).
270 -;opcache.log_verbosity_level=1
271 -
272 -; Preferred Shared Memory back-end. Leave empty and let the system decide.
273 -;opcache.preferred_memory_model=
274 -
275 -; Protect the shared memory from unexpected writing during script execution.
276 -; Useful for internal debugging only.
277 -;opcache.protect_memory=0
278 -
279 -; Allows calling OPcache API functions only from PHP scripts which path is
280 -; started from specified string. The default "" means no restriction
281 -;opcache.restrict_api=
282 -
283 -; Mapping base of shared memory segments (for Windows only). All the PHP
284 -; processes have to map shared memory into the same address space. This
285 -; directive allows to manually fix the "Unable to reattach to base address"
286 -; errors.
287 -;opcache.mmap_base=
288 -
289 -; Facilitates multiple OPcache instances per user (for Windows only). All PHP
290 -; processes with the same cache ID and user share an OPcache instance.
291 -;opcache.cache_id=
292 -
293 -; Enables and sets the second level cache directory.
294 -; It should improve performance when SHM memory is full, at server restart or
295 -; SHM reset. The default "" disables file based caching.
296 -;opcache.file_cache=
297 -
298 -; Enables or disables opcode caching in shared memory.
299 -;opcache.file_cache_only=0
300 -
301 -; Enables or disables checksum validation when script loaded from file cache.
302 -;opcache.file_cache_consistency_checks=1
303 -
304 -; Implies opcache.file_cache_only=1 for a certain process that failed to
305 -; reattach to the shared memory (for Windows only). Explicitly enabled file
306 -; cache is required.
307 -;opcache.file_cache_fallback=1
308 -
309 -; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
310 -; This should improve performance, but requires appropriate OS configuration.
311 -;opcache.huge_code_pages=1
312 -
313 -; Validate cached file permissions.
314 -;opcache.validate_permission=0
315 -
316 -; Prevent name collisions in chroot'ed environment.
317 -;opcache.validate_root=0
318 -
319 -; If specified, it produces opcode dumps for debugging different stages of
320 -; optimizations.
321 -;opcache.opt_debug_level=0
322 -
323 -; Specifies a PHP script that is going to be compiled and executed at server
324 -; start-up.
325 -; http://php.net/opcache.preload
326 -;opcache.preload=
327 -
328 -; Preloading code as root is not allowed for security reasons. This directive
329 -; facilitates to let the preloading to be run as another user.
330 -; http://php.net/opcache.preload_user
331 -;opcache.preload_user=
332 -
333 -; Prevents caching files that are less than this number of seconds old. It
334 -; protects from caching of incompletely updated files. In case all file updates
335 -; on your site are atomic, you may increase performance by setting it to "0".
336 -;opcache.file_update_protection=2
337 -
338 -; Absolute path used to store shared lockfiles (for *nix only).
339 -;opcache.lockfile_path=/tmp
340 -
341  [curl]
342  ; A default value for the CURLOPT_CAINFO option. This is required to be an
343  ; absolute path.