]> git.pld-linux.org Git - packages/php.git/blame - php-ini.patch
install extra sapi config to <sapi>.d dir
[packages/php.git] / php-ini.patch
CommitLineData
82b34688
ER
1--- php-7.4.0beta1/php.ini 2019-08-01 13:04:23.234196613 +0300
2+++ php-7.4.0beta2/php.ini 2019-08-11 11:16:25.219875168 +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 ;
82b34688 24@@ -167,10 +181,8 @@
545270fb
ER
25 ; php.ini Options ;
26 ;;;;;;;;;;;;;;;;;;;;
27 ; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
28-;user_ini.filename = ".user.ini"
29-
30 ; To disable this feature set this option to an empty value
360a5277
ER
31-;user_ini.filename =
32+user_ini.filename =
33
34 ; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
35 ;user_ini.cache_ttl = 300
82b34688 36@@ -225,7 +237,7 @@
c0240cb1 37 ; Development Value: Off
38 ; Production Value: Off
39 ; http://php.net/short-open-tag
40-short_open_tag = Off
41+short_open_tag = On
42
43 ; Allow ASP-style <% %> tags.
44 ; http://php.net/asp-tags
82b34688 45@@ -360,7 +372,7 @@
c0240cb1 46 ; threat in any way, but it makes it possible to determine whether you use PHP
47 ; on your server or not.
48 ; http://php.net/expose-php
49-expose_php = On
50+expose_php = Off
51
52 ;;;;;;;;;;;;;;;;;;;
53 ; Resource Limits ;
82b34688 54@@ -744,9 +756,7 @@
c0240cb1 55
56 ; Directory in which the loadable extensions (modules) reside.
57 ; http://php.net/extension-dir
545270fb
ER
58-;extension_dir = "./"
59-; On windows:
60-;extension_dir = "ext"
91ccfdbd 61+;extension_dir = "/usr/lib/php"
c0240cb1 62
545270fb
ER
63 ; Directory where the temporary files should be placed.
64 ; Defaults to the system default (see sys_get_temp_dir)
82b34688 65@@ -758,64 +768,6 @@
c0240cb1 66 ; http://php.net/enable-dl
ce9aa3af
ER
67 enable_dl = Off
68
c0240cb1 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-; http://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-; http://php.net/cgi.redirect-status-env
ce9aa3af 85-;cgi.redirect_status_env =
c0240cb1 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-; http://php.net/cgi.fix-pathinfo
94-;cgi.fix_pathinfo=1
95-
34458d35
ER
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.
34458d35
ER
98-;cgi.discard_path=1
99-
545270fb 100-; FastCGI under IIS supports the ability to impersonate
c0240cb1 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-; http://php.net/fastcgi.impersonate
ce9aa3af 106-;fastcgi.impersonate = 1
c0240cb1 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
8d42644e
ER
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
c0240cb1 115-; RFC2616 compliant header.
116-; Default is zero.
117-; http://php.net/cgi.rfc2616-headers
118-;cgi.rfc2616_headers = 0
34458d35
ER
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-; http://php.net/cgi.check-shebang-line
125-;cgi.check_shebang_line=1
ce9aa3af 126-
c0240cb1 127 ;;;;;;;;;;;;;;;;
128 ; File Uploads ;
ce9aa3af 129 ;;;;;;;;;;;;;;;;
82b34688 130@@ -895,47 +847,8 @@
5c8bd0f5
ER
131 ; deprecated in a future PHP major version. So, when it is possible, please
132 ; move to the new ('extension=<ext>) syntax.
c0240cb1 133 ;
5c8bd0f5 134-; Notes for Windows environments :
f7323448 135-;
5c8bd0f5
ER
136-; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
137-; extension folders as well as the separate PECL DLL download (PHP 5+).
138-; Be sure to appropriately set the extension_dir directive.
139-;
140-;extension=bz2
141-;extension=curl
142-;extension=fileinfo
143-;extension=gd2
144-;extension=gettext
145-;extension=gmp
146-;extension=intl
147-;extension=imap
5c8bd0f5
ER
148-;extension=ldap
149-;extension=mbstring
150-;extension=exif ; Must be after mbstring as it depends on it
151-;extension=mysqli
152-;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
c1bbe35d 153-;extension=odbc
5c8bd0f5
ER
154-;extension=openssl
155-;extension=pdo_firebird
156-;extension=pdo_mysql
157-;extension=pdo_oci
158-;extension=pdo_odbc
159-;extension=pdo_pgsql
160-;extension=pdo_sqlite
161-;extension=pgsql
162-;extension=shmop
9eb543e2 163-
ea97d535
ER
164-; The MIBS data available in the PHP distribution must be installed.
165-; See http://www.php.net/manual/en/snmp.installation.php
5c8bd0f5 166-;extension=snmp
9eb543e2 167-
5c8bd0f5
ER
168-;extension=soap
169-;extension=sockets
545270fb 170-;extension=sodium
5c8bd0f5
ER
171-;extension=sqlite3
172-;extension=tidy
173-;extension=xmlrpc
174-;extension=xsl
f7323448
ER
175+; Ideally in PLD Linux you should install appropriate php74-<extension> or
176+; php74-pecl-<extension> package.
177
9eb543e2
ER
178 ;;;;;;;;;;;;;;;;;;;
179 ; Module Settings ;
82b34688
ER
180@@ -954,8 +867,9 @@
181
182 [Date]
183 ; Defines the default timezone used by the date functions
184-; http://php.net/date.timezone
185-;date.timezone =
186+; http://php.net/date.timezone.
187+;
188+; NOTE: In PLD Linux the /etc/php/conf.d/timezone.ini is used to set timezone
189
190 ; http://php.net/date.default-latitude
191 ;date.default_latitude = 31.7667
192@@ -970,19 +884,19 @@
8d42644e
ER
193 ; Use of this INI entry is deprecated, use global input_encoding instead.
194 ; If empty, default_charset or input_encoding or iconv.input_encoding is used.
545270fb 195 ; The precedence is: default_charset < input_encoding < iconv.input_encoding
8d42644e 196-;iconv.input_encoding =
86ce2ca6 197+iconv.input_encoding = UTF-8
8d42644e
ER
198
199 ; Use of this INI entry is deprecated, use global internal_encoding instead.
200 ; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
201 ; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
202-;iconv.internal_encoding =
86ce2ca6 203+iconv.internal_encoding = UTF-8
8d42644e
ER
204
205 ; Use of this INI entry is deprecated, use global output_encoding instead.
206 ; If empty, default_charset or output_encoding or iconv.output_encoding is used.
207 ; The precedence is: default_charset < output_encoding < iconv.output_encoding
208 ; To use an output encoding conversion, iconv's output handler must be set
209 ; otherwise output encoding conversion cannot be performed.
210-;iconv.output_encoding =
86ce2ca6
ER
211+iconv.output_encoding = UTF-8
212
213 [intl]
214 ;intl.default_locale =
82b34688 215@@ -1360,7 +1274,7 @@
c0240cb1 216
217 [browscap]
218 ; http://php.net/browscap
219-;browscap = extra/browscap.ini
51507b46 220+;browscap = /usr/share/browscap/php_browscap.ini
c0240cb1 221
222 [Session]
223 ; Handler used to store/retrieve data.
82b34688 224@@ -1747,7 +1661,7 @@
c0240cb1 225
226 ; Sets the directory name where SOAP extension will put cache files.
227 ; http://php.net/soap.wsdl-cache-dir
228-soap.wsdl_cache_dir="/tmp"
3f8f8051 229+soap.wsdl_cache_dir="/var/cache/php"
c0240cb1 230
231 ; (time to live) Sets the number of second while cached file will be used
232 ; instead of original one.
82b34688 233@@ -1761,150 +1675,6 @@
cba59a8a
ER
234 [dba]
235 ;dba.default_handler=
1982e89a 236
cba59a8a
ER
237-[opcache]
238-; Determines if Zend OPCache is enabled
239-;opcache.enable=1
240-
241-; Determines if Zend OPCache is enabled for the CLI version of PHP
242-;opcache.enable_cli=0
243-
244-; The OPcache shared memory storage size.
245-;opcache.memory_consumption=128
246-
247-; The amount of memory for interned strings in Mbytes.
248-;opcache.interned_strings_buffer=8
249-
250-; The maximum number of keys (scripts) in the OPcache hash table.
251-; Only numbers between 200 and 1000000 are allowed.
252-;opcache.max_accelerated_files=10000
253-
254-; The maximum percentage of "wasted" memory until a restart is scheduled.
255-;opcache.max_wasted_percentage=5
256-
257-; When this directive is enabled, the OPcache appends the current working
258-; directory to the script key, thus eliminating possible collisions between
259-; files with the same name (basename). Disabling the directive improves
260-; performance, but may break existing applications.
261-;opcache.use_cwd=1
262-
263-; When disabled, you must reset the OPcache manually or restart the
264-; webserver for changes to the filesystem to take effect.
265-;opcache.validate_timestamps=1
266-
267-; How often (in seconds) to check file timestamps for changes to the shared
268-; memory storage allocation. ("1" means validate once per second, but only
269-; once per request. "0" means always validate)
270-;opcache.revalidate_freq=2
271-
272-; Enables or disables file search in include_path optimization
273-;opcache.revalidate_path=0
274-
275-; If disabled, all PHPDoc comments are dropped from the code to reduce the
276-; size of the optimized code.
277-;opcache.save_comments=1
278-
cba59a8a
ER
279-; Allow file existence override (file_exists, etc.) performance feature.
280-;opcache.enable_file_override=0
281-
282-; A bitmask, where each bit enables or disables the appropriate OPcache
283-; passes
545270fb 284-;opcache.optimization_level=0x7FFFBFFF
cba59a8a 285-
cba59a8a
ER
286-;opcache.dups_fix=0
287-
288-; The location of the OPcache blacklist file (wildcards allowed).
289-; Each OPcache blacklist file is a text file that holds the names of files
290-; that should not be accelerated. The file format is to add each filename
291-; to a new line. The filename may be a full path or just a file prefix
292-; (i.e., /var/www/x blacklists all the files and directories in /var/www
293-; that start with 'x'). Line starting with a ; are ignored (comments).
294-;opcache.blacklist_filename=
295-
296-; Allows exclusion of large files from being cached. By default all files
297-; are cached.
298-;opcache.max_file_size=0
299-
300-; Check the cache checksum each N requests.
301-; The default value of "0" means that the checks are disabled.
302-;opcache.consistency_checks=0
303-
304-; How long to wait (in seconds) for a scheduled restart to begin if the cache
305-; is not being accessed.
306-;opcache.force_restart_timeout=180
307-
308-; OPcache error_log file name. Empty string assumes "stderr".
309-;opcache.error_log=
310-
311-; All OPcache errors go to the Web server log.
312-; By default, only fatal errors (level 0) or errors (level 1) are logged.
313-; You can also enable warnings (level 2), info messages (level 3) or
314-; debug messages (level 4).
315-;opcache.log_verbosity_level=1
316-
317-; Preferred Shared Memory back-end. Leave empty and let the system decide.
318-;opcache.preferred_memory_model=
319-
320-; Protect the shared memory from unexpected writing during script execution.
321-; Useful for internal debugging only.
322-;opcache.protect_memory=0
323-
324-; Allows calling OPcache API functions only from PHP scripts which path is
325-; started from specified string. The default "" means no restriction
326-;opcache.restrict_api=
327-
328-; Mapping base of shared memory segments (for Windows only). All the PHP
329-; processes have to map shared memory into the same address space. This
330-; directive allows to manually fix the "Unable to reattach to base address"
331-; errors.
332-;opcache.mmap_base=
333-
1982e89a
ER
334-; Facilitates multiple OPcache instances per user (for Windows only). All PHP
335-; processes with the same cache ID and user share an OPcache instance.
336-;opcache.cache_id=
337-
cba59a8a
ER
338-; Enables and sets the second level cache directory.
339-; It should improve performance when SHM memory is full, at server restart or
340-; SHM reset. The default "" disables file based caching.
341-;opcache.file_cache=
342-
343-; Enables or disables opcode caching in shared memory.
344-;opcache.file_cache_only=0
345-
346-; Enables or disables checksum validation when script loaded from file cache.
347-;opcache.file_cache_consistency_checks=1
348-
349-; Implies opcache.file_cache_only=1 for a certain process that failed to
350-; reattach to the shared memory (for Windows only). Explicitly enabled file
351-; cache is required.
352-;opcache.file_cache_fallback=1
353-
354-; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
355-; This should improve performance, but requires appropriate OS configuration.
356-;opcache.huge_code_pages=1
357-
358-; Validate cached file permissions.
359-;opcache.validate_permission=0
360-
361-; Prevent name collisions in chroot'ed environment.
362-;opcache.validate_root=0
0fde374e
AM
363-
364-; If specified, it produces opcode dumps for debugging different stages of
365-; optimizations.
366-;opcache.opt_debug_level=0
cba59a8a 367-
f7323448
ER
368-; Specifies a PHP script that is going to be compiled and executed at server
369-; start-up.
370-; http://php.net/opcache.preload
371-;opcache.preload=
372-
373-; Prevents caching files that are less than this number of seconds old. It
374-; protects from caching of incompletely updated files. In case all file updates
375-; on your site are atomic, you may increase performance by setting it to "0".
376-;opcache.file_update_protection=2
377-
378-; Absolute path used to store shared lockfiles (for *nix only).
379-;opcache.lockfile_path=/tmp
380-
cba59a8a
ER
381 [curl]
382 ; A default value for the CURLOPT_CAINFO option. This is required to be an
383 ; absolute path.
This page took 0.661175 seconds and 4 git commands to generate.