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