]> TLD Linux GIT Repositories - packages/php.git/blob - php-ini.patch
- updated to 8.1.4, partial PLD merge
[packages/php.git] / php-ini.patch
1 --- php-8.1.4/php.ini   2022-03-15 21:18:41.000000000 +0100
2 +++ php-8.1.4/php.ini   2022-04-05 01:05:28.031906242 +0200
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  ; https://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  ; https://php.net/expose-php
51 -expose_php = On
52 +expose_php = Off
53  
54  ;;;;;;;;;;;;;;;;;;;
55  ; Resource Limits ;
56 @@ -762,7 +772,7 @@
57  ; https://php.net/extension-dir
58  ;extension_dir = "./"
59  ; On windows:
60 -;extension_dir = "ext"
61 +;extension_dir = "/usr/lib/php"
62  
63  ; Directory where the temporary files should be placed.
64  ; Defaults to the system default (see sys_get_temp_dir)
65 @@ -774,64 +784,6 @@
66  ; https://php.net/enable-dl
67  enable_dl = Off
68  
69 -; cgi.force_redirect is necessary to provide security running PHP as a CGI under
70 -; most web servers.  Left undefined, PHP turns this on by default.  You can
71 -; turn it off here AT YOUR OWN RISK
72 -; **You CAN safely turn this off for IIS, in fact, you MUST.**
73 -; https://php.net/cgi.force-redirect
74 -;cgi.force_redirect = 1
75 -
76 -; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
77 -; every request. PHP's default behavior is to disable this feature.
78 -;cgi.nph = 1
79 -
80 -; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
81 -; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
82 -; will look for to know it is OK to continue execution.  Setting this variable MAY
83 -; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
84 -; https://php.net/cgi.redirect-status-env
85 -;cgi.redirect_status_env =
86 -
87 -; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
88 -; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
89 -; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
90 -; this to 1 will cause PHP CGI to fix its paths to conform to the spec.  A setting
91 -; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
92 -; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
93 -; https://php.net/cgi.fix-pathinfo
94 -;cgi.fix_pathinfo=1
95 -
96 -; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
97 -; of the web tree and people will not be able to circumvent .htaccess security.
98 -;cgi.discard_path=1
99 -
100 -; FastCGI under IIS supports the ability to impersonate
101 -; security tokens of the calling client.  This allows IIS to define the
102 -; security context that the request runs under.  mod_fastcgi under Apache
103 -; does not currently support this feature (03/17/2002)
104 -; Set to 1 if running under IIS.  Default is zero.
105 -; https://php.net/fastcgi.impersonate
106 -;fastcgi.impersonate = 1
107 -
108 -; Disable logging through FastCGI connection. PHP's default behavior is to enable
109 -; this feature.
110 -;fastcgi.logging = 0
111 -
112 -; cgi.rfc2616_headers configuration option tells PHP what type of headers to
113 -; use when sending HTTP response code. If set to 0, PHP sends Status: header that
114 -; is supported by Apache. When this option is set to 1, PHP will send
115 -; RFC2616 compliant header.
116 -; Default is zero.
117 -; https://php.net/cgi.rfc2616-headers
118 -;cgi.rfc2616_headers = 0
119 -
120 -; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
121 -; (shebang) at the top of the running script. This line might be needed if the
122 -; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
123 -; mode skips this line and ignores its content if this directive is turned on.
124 -; https://php.net/cgi.check-shebang-line
125 -;cgi.check_shebang_line=1
126 -
127  ;;;;;;;;;;;;;;;;
128  ; File Uploads ;
129  ;;;;;;;;;;;;;;;;
130 @@ -990,19 +942,19 @@
131  ; Use of this INI entry is deprecated, use global input_encoding instead.
132  ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
133  ; The precedence is: default_charset < input_encoding < iconv.input_encoding
134 -;iconv.input_encoding =
135 +iconv.input_encoding = UTF-8
136  
137  ; Use of this INI entry is deprecated, use global internal_encoding instead.
138  ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
139  ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
140 -;iconv.internal_encoding =
141 +iconv.internal_encoding = UTF-8
142  
143  ; Use of this INI entry is deprecated, use global output_encoding instead.
144  ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
145  ; The precedence is: default_charset < output_encoding < iconv.output_encoding
146  ; To use an output encoding conversion, iconv's output handler must be set
147  ; otherwise output encoding conversion cannot be performed.
148 -;iconv.output_encoding =
149 +iconv.output_encoding = UTF-8
150  
151  [imap]
152  ; rsh/ssh logins are disabled by default. Use this INI entry if you want to
153 @@ -1172,6 +1124,9 @@
154  ; https://php.net/mysqli.default-socket
155  mysqli.default_socket =
156  
157 +; The name of the character set to use as the default character set.
158 +;mysqli.connect_charset=utf8
159 +
160  ; Default host for mysqli_connect() (doesn't apply in safe mode).
161  ; https://php.net/mysqli.default-host
162  mysqli.default_host =
163 @@ -1318,7 +1273,7 @@
164  
165  [browscap]
166  ; https://php.net/browscap
167 -;browscap = extra/browscap.ini
168 +;browscap = /usr/share/browscap/php_browscap.ini
169  
170  [Session]
171  ; Handler used to store/retrieve data.
172 @@ -1741,7 +1696,7 @@
173  
174  ; Sets the directory name where SOAP extension will put cache files.
175  ; https://php.net/soap.wsdl-cache-dir
176 -soap.wsdl_cache_dir="/tmp"
177 +soap.wsdl_cache_dir="/var/cache/php"
178  
179  ; (time to live) Sets the number of second while cached file will be used
180  ; instead of original one.
181 @@ -1762,160 +1717,6 @@
182  [dba]
183  ;dba.default_handler=
184  
185 -[opcache]
186 -; Determines if Zend OPCache is enabled
187 -;opcache.enable=1
188 -
189 -; Determines if Zend OPCache is enabled for the CLI version of PHP
190 -;opcache.enable_cli=0
191 -
192 -; The OPcache shared memory storage size.
193 -;opcache.memory_consumption=128
194 -
195 -; The amount of memory for interned strings in Mbytes.
196 -;opcache.interned_strings_buffer=8
197 -
198 -; The maximum number of keys (scripts) in the OPcache hash table.
199 -; Only numbers between 200 and 1000000 are allowed.
200 -;opcache.max_accelerated_files=10000
201 -
202 -; The maximum percentage of "wasted" memory until a restart is scheduled.
203 -;opcache.max_wasted_percentage=5
204 -
205 -; When this directive is enabled, the OPcache appends the current working
206 -; directory to the script key, thus eliminating possible collisions between
207 -; files with the same name (basename). Disabling the directive improves
208 -; performance, but may break existing applications.
209 -;opcache.use_cwd=1
210 -
211 -; When disabled, you must reset the OPcache manually or restart the
212 -; webserver for changes to the filesystem to take effect.
213 -;opcache.validate_timestamps=1
214 -
215 -; How often (in seconds) to check file timestamps for changes to the shared
216 -; memory storage allocation. ("1" means validate once per second, but only
217 -; once per request. "0" means always validate)
218 -;opcache.revalidate_freq=2
219 -
220 -; Enables or disables file search in include_path optimization
221 -;opcache.revalidate_path=0
222 -
223 -; If disabled, all PHPDoc comments are dropped from the code to reduce the
224 -; size of the optimized code.
225 -;opcache.save_comments=1
226 -
227 -; If enabled, compilation warnings (including notices and deprecations) will
228 -; be recorded and replayed each time a file is included. Otherwise, compilation
229 -; warnings will only be emitted when the file is first cached.
230 -;opcache.record_warnings=0
231 -
232 -; Allow file existence override (file_exists, etc.) performance feature.
233 -;opcache.enable_file_override=0
234 -
235 -; A bitmask, where each bit enables or disables the appropriate OPcache
236 -; passes
237 -;opcache.optimization_level=0x7FFFBFFF
238 -
239 -;opcache.dups_fix=0
240 -
241 -; The location of the OPcache blacklist file (wildcards allowed).
242 -; Each OPcache blacklist file is a text file that holds the names of files
243 -; that should not be accelerated. The file format is to add each filename
244 -; to a new line. The filename may be a full path or just a file prefix
245 -; (i.e., /var/www/x  blacklists all the files and directories in /var/www
246 -; that start with 'x'). Line starting with a ; are ignored (comments).
247 -;opcache.blacklist_filename=
248 -
249 -; Allows exclusion of large files from being cached. By default all files
250 -; are cached.
251 -;opcache.max_file_size=0
252 -
253 -; Check the cache checksum each N requests.
254 -; The default value of "0" means that the checks are disabled.
255 -;opcache.consistency_checks=0
256 -
257 -; How long to wait (in seconds) for a scheduled restart to begin if the cache
258 -; is not being accessed.
259 -;opcache.force_restart_timeout=180
260 -
261 -; OPcache error_log file name. Empty string assumes "stderr".
262 -;opcache.error_log=
263 -
264 -; All OPcache errors go to the Web server log.
265 -; By default, only fatal errors (level 0) or errors (level 1) are logged.
266 -; You can also enable warnings (level 2), info messages (level 3) or
267 -; debug messages (level 4).
268 -;opcache.log_verbosity_level=1
269 -
270 -; Preferred Shared Memory back-end. Leave empty and let the system decide.
271 -;opcache.preferred_memory_model=
272 -
273 -; Protect the shared memory from unexpected writing during script execution.
274 -; Useful for internal debugging only.
275 -;opcache.protect_memory=0
276 -
277 -; Allows calling OPcache API functions only from PHP scripts which path is
278 -; started from specified string. The default "" means no restriction
279 -;opcache.restrict_api=
280 -
281 -; Mapping base of shared memory segments (for Windows only). All the PHP
282 -; processes have to map shared memory into the same address space. This
283 -; directive allows to manually fix the "Unable to reattach to base address"
284 -; errors.
285 -;opcache.mmap_base=
286 -
287 -; Facilitates multiple OPcache instances per user (for Windows only). All PHP
288 -; processes with the same cache ID and user share an OPcache instance.
289 -;opcache.cache_id=
290 -
291 -; Enables and sets the second level cache directory.
292 -; It should improve performance when SHM memory is full, at server restart or
293 -; SHM reset. The default "" disables file based caching.
294 -;opcache.file_cache=
295 -
296 -; Enables or disables opcode caching in shared memory.
297 -;opcache.file_cache_only=0
298 -
299 -; Enables or disables checksum validation when script loaded from file cache.
300 -;opcache.file_cache_consistency_checks=1
301 -
302 -; Implies opcache.file_cache_only=1 for a certain process that failed to
303 -; reattach to the shared memory (for Windows only). Explicitly enabled file
304 -; cache is required.
305 -;opcache.file_cache_fallback=1
306 -
307 -; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
308 -; This should improve performance, but requires appropriate OS configuration.
309 -;opcache.huge_code_pages=1
310 -
311 -; Validate cached file permissions.
312 -;opcache.validate_permission=0
313 -
314 -; Prevent name collisions in chroot'ed environment.
315 -;opcache.validate_root=0
316 -
317 -; If specified, it produces opcode dumps for debugging different stages of
318 -; optimizations.
319 -;opcache.opt_debug_level=0
320 -
321 -; Specifies a PHP script that is going to be compiled and executed at server
322 -; start-up.
323 -; https://php.net/opcache.preload
324 -;opcache.preload=
325 -
326 -; Preloading code as root is not allowed for security reasons. This directive
327 -; facilitates to let the preloading to be run as another user.
328 -; https://php.net/opcache.preload_user
329 -;opcache.preload_user=
330 -
331 -; Prevents caching files that are less than this number of seconds old. It
332 -; protects from caching of incompletely updated files. In case all file updates
333 -; on your site are atomic, you may increase performance by setting it to "0".
334 -;opcache.file_update_protection=2
335 -
336 -; Absolute path used to store shared lockfiles (for *nix only).
337 -;opcache.lockfile_path=/tmp
338 -
339  [curl]
340  ; A default value for the CURLOPT_CAINFO option. This is required to be an
341  ; absolute path.