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