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