wslave 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/base/config/deploy/production.rb +4 -2
- data/base/config/deploy/staging.rb +4 -2
- data/base/docker/apache/Dockerfile +1 -1
- data/base/docker/nginx/Dockerfile +32 -12
- data/base/docker/nginx/nginx.vhost +1 -1
- data/base/docker/nginx/php.ini +0 -874
- data/base/docker/nginx/supervisord.conf +1 -1
- data/base/docker/nginx/wp-cli.yml +9 -0
- data/base/docker-compose.yml +2 -0
- data/base/public/wp-config.php +18 -41
- data/base/wp-cli.yml +8 -0
- data/bin/wslave +14 -2
- data/lib/wslave_docker.rb +1 -1
- data/lib/wslave_tools.rb +28 -13
- data/wslave.gemspec +2 -2
- metadata +8 -6
data/base/docker/nginx/php.ini
CHANGED
@@ -1,170 +1,5 @@
|
|
1
1
|
[PHP]
|
2
2
|
|
3
|
-
;;;;;;;;;;;;;;;;;;;
|
4
|
-
; About php.ini ;
|
5
|
-
;;;;;;;;;;;;;;;;;;;
|
6
|
-
; PHP's initialization file, generally called php.ini, is responsible for
|
7
|
-
; configuring many of the aspects of PHP's behavior.
|
8
|
-
|
9
|
-
; PHP attempts to find and load this configuration from a number of locations.
|
10
|
-
; The following is a summary of its search order:
|
11
|
-
; 1. SAPI module specific location.
|
12
|
-
; 2. The PHPRC environment variable. (As of PHP 5.2.0)
|
13
|
-
; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
|
14
|
-
; 4. Current working directory (except CLI)
|
15
|
-
; 5. The web server's directory (for SAPI modules), or directory of PHP
|
16
|
-
; (otherwise in Windows)
|
17
|
-
; 6. The directory from the --with-config-file-path compile time option, or the
|
18
|
-
; Windows directory (usually C:\windows)
|
19
|
-
; See the PHP docs for more specific information.
|
20
|
-
; http://php.net/configuration.file
|
21
|
-
|
22
|
-
; The syntax of the file is extremely simple. Whitespace and lines
|
23
|
-
; beginning with a semicolon are silently ignored (as you probably guessed).
|
24
|
-
; Section headers (e.g. [Foo]) are also silently ignored, even though
|
25
|
-
; they might mean something in the future.
|
26
|
-
|
27
|
-
; Directives following the section heading [PATH=/www/mysite] only
|
28
|
-
; apply to PHP files in the /www/mysite directory. Directives
|
29
|
-
; following the section heading [HOST=www.example.com] only apply to
|
30
|
-
; PHP files served from www.example.com. Directives set in these
|
31
|
-
; special sections cannot be overridden by user-defined INI files or
|
32
|
-
; at runtime. Currently, [PATH=] and [HOST=] sections only work under
|
33
|
-
; CGI/FastCGI.
|
34
|
-
; http://php.net/ini.sections
|
35
|
-
|
36
|
-
; Directives are specified using the following syntax:
|
37
|
-
; directive = value
|
38
|
-
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
|
39
|
-
; Directives are variables used to configure PHP or PHP extensions.
|
40
|
-
; There is no name validation. If PHP can't find an expected
|
41
|
-
; directive because it is not set or is mistyped, a default value will be used.
|
42
|
-
|
43
|
-
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
|
44
|
-
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
|
45
|
-
; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
|
46
|
-
; previously set variable or directive (e.g. ${foo})
|
47
|
-
|
48
|
-
; Expressions in the INI file are limited to bitwise operators and parentheses:
|
49
|
-
; | bitwise OR
|
50
|
-
; ^ bitwise XOR
|
51
|
-
; & bitwise AND
|
52
|
-
; ~ bitwise NOT
|
53
|
-
; ! boolean NOT
|
54
|
-
|
55
|
-
; Boolean flags can be turned on using the values 1, On, True or Yes.
|
56
|
-
; They can be turned off using the values 0, Off, False or No.
|
57
|
-
|
58
|
-
; An empty string can be denoted by simply not writing anything after the equal
|
59
|
-
; sign, or by using the None keyword:
|
60
|
-
|
61
|
-
; foo = ; sets foo to an empty string
|
62
|
-
; foo = None ; sets foo to an empty string
|
63
|
-
; foo = "None" ; sets foo to the string 'None'
|
64
|
-
|
65
|
-
; If you use constants in your value, and these constants belong to a
|
66
|
-
; dynamically loaded extension (either a PHP extension or a Zend extension),
|
67
|
-
; you may only use these constants *after* the line that loads the extension.
|
68
|
-
|
69
|
-
;;;;;;;;;;;;;;;;;;;
|
70
|
-
; About this file ;
|
71
|
-
;;;;;;;;;;;;;;;;;;;
|
72
|
-
; PHP comes packaged with two INI files. One that is recommended to be used
|
73
|
-
; in production environments and one that is recommended to be used in
|
74
|
-
; development environments.
|
75
|
-
|
76
|
-
; php.ini-production contains settings which hold security, performance and
|
77
|
-
; best practices at its core. But please be aware, these settings may break
|
78
|
-
; compatibility with older or less security conscience applications. We
|
79
|
-
; recommending using the production ini in production and testing environments.
|
80
|
-
|
81
|
-
; php.ini-development is very similar to its production variant, except it is
|
82
|
-
; much more verbose when it comes to errors. We recommend using the
|
83
|
-
; development version only in development environments, as errors shown to
|
84
|
-
; application users can inadvertently leak otherwise secure information.
|
85
|
-
|
86
|
-
; This is the php.ini-production INI file.
|
87
|
-
|
88
|
-
;;;;;;;;;;;;;;;;;;;
|
89
|
-
; Quick Reference ;
|
90
|
-
;;;;;;;;;;;;;;;;;;;
|
91
|
-
; The following are all the settings which are different in either the production
|
92
|
-
; or development versions of the INIs with respect to PHP's default behavior.
|
93
|
-
; Please see the actual settings later in the document for more details as to why
|
94
|
-
; we recommend these changes in PHP's behavior.
|
95
|
-
|
96
|
-
; display_errors
|
97
|
-
; Default Value: On
|
98
|
-
; Development Value: On
|
99
|
-
; Production Value: Off
|
100
|
-
|
101
|
-
; display_startup_errors
|
102
|
-
; Default Value: Off
|
103
|
-
; Development Value: On
|
104
|
-
; Production Value: Off
|
105
|
-
|
106
|
-
; error_reporting
|
107
|
-
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
|
108
|
-
; Development Value: E_ALL
|
109
|
-
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
|
110
|
-
|
111
|
-
; log_errors
|
112
|
-
; Default Value: Off
|
113
|
-
; Development Value: On
|
114
|
-
; Production Value: On
|
115
|
-
|
116
|
-
; max_input_time
|
117
|
-
; Default Value: -1 (Unlimited)
|
118
|
-
; Development Value: 60 (60 seconds)
|
119
|
-
; Production Value: 60 (60 seconds)
|
120
|
-
|
121
|
-
; output_buffering
|
122
|
-
; Default Value: Off
|
123
|
-
; Development Value: 4096
|
124
|
-
; Production Value: 4096
|
125
|
-
|
126
|
-
; register_argc_argv
|
127
|
-
; Default Value: On
|
128
|
-
; Development Value: Off
|
129
|
-
; Production Value: Off
|
130
|
-
|
131
|
-
; request_order
|
132
|
-
; Default Value: None
|
133
|
-
; Development Value: "GP"
|
134
|
-
; Production Value: "GP"
|
135
|
-
|
136
|
-
; session.gc_divisor
|
137
|
-
; Default Value: 100
|
138
|
-
; Development Value: 1000
|
139
|
-
; Production Value: 1000
|
140
|
-
|
141
|
-
; session.sid_bits_per_character
|
142
|
-
; Default Value: 4
|
143
|
-
; Development Value: 5
|
144
|
-
; Production Value: 5
|
145
|
-
|
146
|
-
; short_open_tag
|
147
|
-
; Default Value: On
|
148
|
-
; Development Value: Off
|
149
|
-
; Production Value: Off
|
150
|
-
|
151
|
-
; variables_order
|
152
|
-
; Default Value: "EGPCS"
|
153
|
-
; Development Value: "GPCS"
|
154
|
-
; Production Value: "GPCS"
|
155
|
-
|
156
|
-
;;;;;;;;;;;;;;;;;;;;
|
157
|
-
; php.ini Options ;
|
158
|
-
;;;;;;;;;;;;;;;;;;;;
|
159
|
-
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
|
160
|
-
;user_ini.filename = ".user.ini"
|
161
|
-
|
162
|
-
; To disable this feature set this option to an empty value
|
163
|
-
;user_ini.filename =
|
164
|
-
|
165
|
-
; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
|
166
|
-
;user_ini.cache_ttl = 300
|
167
|
-
|
168
3
|
;;;;;;;;;;;;;;;;;;;;
|
169
4
|
; Language Options ;
|
170
5
|
;;;;;;;;;;;;;;;;;;;;
|
@@ -214,38 +49,6 @@ precision = 14
|
|
214
49
|
; http://php.net/output-buffering
|
215
50
|
output_buffering = 4096
|
216
51
|
|
217
|
-
; You can redirect all of the output of your scripts to a function. For
|
218
|
-
; example, if you set output_handler to "mb_output_handler", character
|
219
|
-
; encoding will be transparently converted to the specified encoding.
|
220
|
-
; Setting any output handler automatically turns on output buffering.
|
221
|
-
; Note: People who wrote portable scripts should not depend on this ini
|
222
|
-
; directive. Instead, explicitly set the output handler using ob_start().
|
223
|
-
; Using this ini directive may cause problems unless you know what script
|
224
|
-
; is doing.
|
225
|
-
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
|
226
|
-
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
|
227
|
-
; Note: output_handler must be empty if this is set 'On' !!!!
|
228
|
-
; Instead you must use zlib.output_handler.
|
229
|
-
; http://php.net/output-handler
|
230
|
-
;output_handler =
|
231
|
-
|
232
|
-
; URL rewriter function rewrites URL on the fly by using
|
233
|
-
; output buffer. You can set target tags by this configuration.
|
234
|
-
; "form" tag is special tag. It will add hidden input tag to pass values.
|
235
|
-
; Refer to session.trans_sid_tags for usage.
|
236
|
-
; Default Value: "form="
|
237
|
-
; Development Value: "form="
|
238
|
-
; Production Value: "form="
|
239
|
-
;url_rewriter.tags
|
240
|
-
|
241
|
-
; URL rewriter will not rewrite absolute URL nor form by default. To enable
|
242
|
-
; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
|
243
|
-
; Refer to session.trans_sid_hosts for more details.
|
244
|
-
; Default Value: ""
|
245
|
-
; Development Value: ""
|
246
|
-
; Production Value: ""
|
247
|
-
;url_rewriter.hosts
|
248
|
-
|
249
52
|
; Transparent output compression using the zlib library
|
250
53
|
; Valid values for this option are 'off', 'on', or a specific buffer size
|
251
54
|
; to be used for compression (default is 4KB)
|
@@ -258,15 +61,6 @@ output_buffering = 4096
|
|
258
61
|
; http://php.net/zlib.output-compression
|
259
62
|
zlib.output_compression = Off
|
260
63
|
|
261
|
-
; http://php.net/zlib.output-compression-level
|
262
|
-
;zlib.output_compression_level = -1
|
263
|
-
|
264
|
-
; You cannot specify additional output handlers if zlib.output_compression
|
265
|
-
; is activated here. This setting does the same as output_handler but in
|
266
|
-
; a different order.
|
267
|
-
; http://php.net/zlib.output-handler
|
268
|
-
;zlib.output_handler =
|
269
|
-
|
270
64
|
; Implicit flush tells PHP to tell the output layer to flush itself
|
271
65
|
; automatically after every output block. This is equivalent to calling the
|
272
66
|
; PHP function flush() after each and every call to print() or echo() and each
|
@@ -284,13 +78,6 @@ implicit_flush = Off
|
|
284
78
|
; callback-function.
|
285
79
|
unserialize_callback_func =
|
286
80
|
|
287
|
-
; The unserialize_max_depth specifies the default depth limit for unserialized
|
288
|
-
; structures. Setting the depth limit too high may result in stack overflows
|
289
|
-
; during unserialization. The unserialize_max_depth ini setting can be
|
290
|
-
; overridden by the max_depth option on individual unserialize() calls.
|
291
|
-
; A value of 0 disables the depth limit.
|
292
|
-
;unserialize_max_depth = 4096
|
293
|
-
|
294
81
|
; When floats & doubles are serialized, store serialize_precision significant
|
295
82
|
; digits after the floating point. The default value ensures that when floats
|
296
83
|
; are decoded with unserialize, the data will remain the same.
|
@@ -299,13 +86,6 @@ unserialize_callback_func =
|
|
299
86
|
; precision.
|
300
87
|
serialize_precision = -1
|
301
88
|
|
302
|
-
; open_basedir, if set, limits all file operations to the defined directory
|
303
|
-
; and below. This directive makes most sense if used in a per-directory
|
304
|
-
; or per-virtualhost web server configuration file.
|
305
|
-
; Note: disables the realpath cache
|
306
|
-
; http://php.net/open-basedir
|
307
|
-
;open_basedir =
|
308
|
-
|
309
89
|
; This directive allows you to disable certain functions for security reasons.
|
310
90
|
; It receives a comma-delimited list of function names.
|
311
91
|
; http://php.net/disable-functions
|
@@ -316,51 +96,10 @@ disable_functions = pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexi
|
|
316
96
|
; http://php.net/disable-classes
|
317
97
|
disable_classes =
|
318
98
|
|
319
|
-
; Colors for Syntax Highlighting mode. Anything that's acceptable in
|
320
|
-
; <span style="color: ???????"> would work.
|
321
|
-
; http://php.net/syntax-highlighting
|
322
|
-
;highlight.string = #DD0000
|
323
|
-
;highlight.comment = #FF9900
|
324
|
-
;highlight.keyword = #007700
|
325
|
-
;highlight.default = #0000BB
|
326
|
-
;highlight.html = #000000
|
327
|
-
|
328
|
-
; If enabled, the request will be allowed to complete even if the user aborts
|
329
|
-
; the request. Consider enabling it if executing long requests, which may end up
|
330
|
-
; being interrupted by the user or a browser timing out. PHP's default behavior
|
331
|
-
; is to disable this feature.
|
332
|
-
; http://php.net/ignore-user-abort
|
333
|
-
;ignore_user_abort = On
|
334
|
-
|
335
|
-
; Determines the size of the realpath cache to be used by PHP. This value should
|
336
|
-
; be increased on systems where PHP opens many files to reflect the quantity of
|
337
|
-
; the file operations performed.
|
338
|
-
; Note: if open_basedir is set, the cache is disabled
|
339
|
-
; http://php.net/realpath-cache-size
|
340
|
-
;realpath_cache_size = 4096k
|
341
|
-
|
342
|
-
; Duration of time, in seconds for which to cache realpath information for a given
|
343
|
-
; file or directory. For systems with rarely changing files, consider increasing this
|
344
|
-
; value.
|
345
|
-
; http://php.net/realpath-cache-ttl
|
346
|
-
;realpath_cache_ttl = 120
|
347
|
-
|
348
99
|
; Enables or disables the circular reference collector.
|
349
100
|
; http://php.net/zend.enable-gc
|
350
101
|
zend.enable_gc = On
|
351
102
|
|
352
|
-
; If enabled, scripts may be written in encodings that are incompatible with
|
353
|
-
; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
|
354
|
-
; encodings. To use this feature, mbstring extension must be enabled.
|
355
|
-
; Default: Off
|
356
|
-
;zend.multibyte = Off
|
357
|
-
|
358
|
-
; Allows to set the default encoding for the scripts. This value will be used
|
359
|
-
; unless "declare(encoding=...)" directive appears at the top of the script.
|
360
|
-
; Only affects if zend.multibyte is set.
|
361
|
-
; Default: ""
|
362
|
-
;zend.script_encoding =
|
363
|
-
|
364
103
|
; Allows to include or exclude arguments from stack traces generated for exceptions
|
365
104
|
; Default: Off
|
366
105
|
; In production, it is recommended to turn this setting on to prohibit the output
|
@@ -397,13 +136,6 @@ max_execution_time = 1200
|
|
397
136
|
; http://php.net/max-input-time
|
398
137
|
max_input_time = 2400
|
399
138
|
|
400
|
-
; Maximum input variable nesting level
|
401
|
-
; http://php.net/max-input-nesting-level
|
402
|
-
;max_input_nesting_level = 64
|
403
|
-
|
404
|
-
; How many GET/POST/COOKIE input variables may be accepted
|
405
|
-
;max_input_vars = 1000
|
406
|
-
|
407
139
|
; Maximum amount of memory a script may consume (128MB)
|
408
140
|
; http://php.net/memory-limit
|
409
141
|
memory_limit = 512M
|
@@ -524,111 +256,10 @@ ignore_repeated_source = Off
|
|
524
256
|
; http://php.net/report-memleaks
|
525
257
|
report_memleaks = On
|
526
258
|
|
527
|
-
; This setting is on by default.
|
528
|
-
;report_zend_debug = 0
|
529
|
-
|
530
|
-
; Store the last error/warning message in $php_errormsg (boolean). Setting this value
|
531
|
-
; to On can assist in debugging and is appropriate for development servers. It should
|
532
|
-
; however be disabled on production servers.
|
533
|
-
; This directive is DEPRECATED.
|
534
|
-
; Default Value: Off
|
535
|
-
; Development Value: Off
|
536
|
-
; Production Value: Off
|
537
|
-
; http://php.net/track-errors
|
538
|
-
;track_errors = Off
|
539
|
-
|
540
|
-
; Turn off normal error reporting and emit XML-RPC error XML
|
541
|
-
; http://php.net/xmlrpc-errors
|
542
|
-
;xmlrpc_errors = 0
|
543
|
-
|
544
|
-
; An XML-RPC faultCode
|
545
|
-
;xmlrpc_error_number = 0
|
546
|
-
|
547
|
-
; When PHP displays or logs an error, it has the capability of formatting the
|
548
|
-
; error message as HTML for easier reading. This directive controls whether
|
549
|
-
; the error message is formatted as HTML or not.
|
550
|
-
; Note: This directive is hardcoded to Off for the CLI SAPI
|
551
|
-
; http://php.net/html-errors
|
552
|
-
;html_errors = On
|
553
|
-
|
554
|
-
; If html_errors is set to On *and* docref_root is not empty, then PHP
|
555
|
-
; produces clickable error messages that direct to a page describing the error
|
556
|
-
; or function causing the error in detail.
|
557
|
-
; You can download a copy of the PHP manual from http://php.net/docs
|
558
|
-
; and change docref_root to the base URL of your local copy including the
|
559
|
-
; leading '/'. You must also specify the file extension being used including
|
560
|
-
; the dot. PHP's default behavior is to leave these settings empty, in which
|
561
|
-
; case no links to documentation are generated.
|
562
|
-
; Note: Never use this feature for production boxes.
|
563
|
-
; http://php.net/docref-root
|
564
|
-
; Examples
|
565
|
-
;docref_root = "/phpmanual/"
|
566
|
-
|
567
|
-
; http://php.net/docref-ext
|
568
|
-
;docref_ext = .html
|
569
|
-
|
570
|
-
; String to output before an error message. PHP's default behavior is to leave
|
571
|
-
; this setting blank.
|
572
|
-
; http://php.net/error-prepend-string
|
573
|
-
; Example:
|
574
|
-
;error_prepend_string = "<span style='color: #ff0000'>"
|
575
|
-
|
576
|
-
; String to output after an error message. PHP's default behavior is to leave
|
577
|
-
; this setting blank.
|
578
|
-
; http://php.net/error-append-string
|
579
|
-
; Example:
|
580
|
-
;error_append_string = "</span>"
|
581
|
-
|
582
|
-
; Log errors to specified file. PHP's default behavior is to leave this value
|
583
|
-
; empty.
|
584
|
-
; http://php.net/error-log
|
585
|
-
; Example:
|
586
|
-
;error_log = php_errors.log
|
587
|
-
; Log errors to syslog (Event Log on Windows).
|
588
|
-
;error_log = syslog
|
589
|
-
|
590
|
-
; The syslog ident is a string which is prepended to every message logged
|
591
|
-
; to syslog. Only used when error_log is set to syslog.
|
592
|
-
;syslog.ident = php
|
593
|
-
|
594
|
-
; The syslog facility is used to specify what type of program is logging
|
595
|
-
; the message. Only used when error_log is set to syslog.
|
596
|
-
;syslog.facility = user
|
597
|
-
|
598
|
-
; Set this to disable filtering control characters (the default).
|
599
|
-
; Some loggers only accept NVT-ASCII, others accept anything that's not
|
600
|
-
; control characters. If your logger accepts everything, then no filtering
|
601
|
-
; is needed at all.
|
602
|
-
; Allowed values are:
|
603
|
-
; ascii (all printable ASCII characters and NL)
|
604
|
-
; no-ctrl (all characters except control characters)
|
605
|
-
; all (all characters)
|
606
|
-
; raw (like "all", but messages are not split at newlines)
|
607
|
-
; http://php.net/syslog.filter
|
608
|
-
;syslog.filter = ascii
|
609
|
-
|
610
|
-
;windows.show_crt_warning
|
611
|
-
; Default value: 0
|
612
|
-
; Development value: 0
|
613
|
-
; Production value: 0
|
614
|
-
|
615
259
|
;;;;;;;;;;;;;;;;;
|
616
260
|
; Data Handling ;
|
617
261
|
;;;;;;;;;;;;;;;;;
|
618
262
|
|
619
|
-
; The separator used in PHP generated URLs to separate arguments.
|
620
|
-
; PHP's default setting is "&".
|
621
|
-
; http://php.net/arg-separator.output
|
622
|
-
; Example:
|
623
|
-
;arg_separator.output = "&"
|
624
|
-
|
625
|
-
; List of separator(s) used by PHP to parse input URLs into variables.
|
626
|
-
; PHP's default setting is "&".
|
627
|
-
; NOTE: Every character in this directive is considered as separator!
|
628
|
-
; http://php.net/arg-separator.input
|
629
|
-
; Example:
|
630
|
-
;arg_separator.input = ";&"
|
631
|
-
|
632
263
|
; This directive determines which super global arrays are registered when PHP
|
633
264
|
; starts up. G,P,C,E & S are abbreviations for the following respective super
|
634
265
|
; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
|
@@ -678,15 +309,6 @@ register_argc_argv = Off
|
|
678
309
|
; http://php.net/auto-globals-jit
|
679
310
|
auto_globals_jit = On
|
680
311
|
|
681
|
-
; Whether PHP will read the POST data.
|
682
|
-
; This option is enabled by default.
|
683
|
-
; Most likely, you won't want to disable this option globally. It causes $_POST
|
684
|
-
; and $_FILES to always be empty; the only way you will be able to read the
|
685
|
-
; POST data will be through the php://input stream wrapper. This can be useful
|
686
|
-
; to proxy requests or to process the POST data in a memory efficient fashion.
|
687
|
-
; http://php.net/enable-post-data-reading
|
688
|
-
;enable_post_data_reading = Off
|
689
|
-
|
690
312
|
; Maximum size of POST data that PHP will accept.
|
691
313
|
; Its value may be 0 to disable the limit. It is ignored if POST data reading
|
692
314
|
; is disabled through enable_post_data_reading.
|
@@ -712,35 +334,10 @@ default_mimetype = "text/html"
|
|
712
334
|
; http://php.net/default-charset
|
713
335
|
default_charset = "UTF-8"
|
714
336
|
|
715
|
-
; PHP internal character encoding is set to empty.
|
716
|
-
; If empty, default_charset is used.
|
717
|
-
; http://php.net/internal-encoding
|
718
|
-
;internal_encoding =
|
719
|
-
|
720
|
-
; PHP input character encoding is set to empty.
|
721
|
-
; If empty, default_charset is used.
|
722
|
-
; http://php.net/input-encoding
|
723
|
-
;input_encoding =
|
724
|
-
|
725
|
-
; PHP output character encoding is set to empty.
|
726
|
-
; If empty, default_charset is used.
|
727
|
-
; See also output_buffer.
|
728
|
-
; http://php.net/output-encoding
|
729
|
-
;output_encoding =
|
730
|
-
|
731
337
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
732
338
|
; Paths and Directories ;
|
733
339
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
734
340
|
|
735
|
-
; UNIX: "/path1:/path2"
|
736
|
-
;include_path = ".:/usr/share/php"
|
737
|
-
;
|
738
|
-
; Windows: "\path1;\path2"
|
739
|
-
;include_path = ".;c:\php\includes"
|
740
|
-
;
|
741
|
-
; PHP's default setting for include_path is ".;/path/to/php/pear"
|
742
|
-
; http://php.net/include-path
|
743
|
-
|
744
341
|
; The root of the PHP pages, used only if nonempty.
|
745
342
|
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
|
746
343
|
; if you are running php as a CGI under any web server (other than IIS)
|
@@ -754,80 +351,12 @@ doc_root =
|
|
754
351
|
; http://php.net/user-dir
|
755
352
|
user_dir =
|
756
353
|
|
757
|
-
; Directory in which the loadable extensions (modules) reside.
|
758
|
-
; http://php.net/extension-dir
|
759
|
-
;extension_dir = "./"
|
760
|
-
; On windows:
|
761
|
-
;extension_dir = "ext"
|
762
|
-
|
763
|
-
; Directory where the temporary files should be placed.
|
764
|
-
; Defaults to the system default (see sys_get_temp_dir)
|
765
|
-
;sys_temp_dir = "/tmp"
|
766
|
-
|
767
354
|
; Whether or not to enable the dl() function. The dl() function does NOT work
|
768
355
|
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
|
769
356
|
; disabled on them.
|
770
357
|
; http://php.net/enable-dl
|
771
358
|
enable_dl = Off
|
772
359
|
|
773
|
-
; cgi.force_redirect is necessary to provide security running PHP as a CGI under
|
774
|
-
; most web servers. Left undefined, PHP turns this on by default. You can
|
775
|
-
; turn it off here AT YOUR OWN RISK
|
776
|
-
; **You CAN safely turn this off for IIS, in fact, you MUST.**
|
777
|
-
; http://php.net/cgi.force-redirect
|
778
|
-
;cgi.force_redirect = 1
|
779
|
-
|
780
|
-
; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
|
781
|
-
; every request. PHP's default behavior is to disable this feature.
|
782
|
-
;cgi.nph = 1
|
783
|
-
|
784
|
-
; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
|
785
|
-
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
|
786
|
-
; will look for to know it is OK to continue execution. Setting this variable MAY
|
787
|
-
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
|
788
|
-
; http://php.net/cgi.redirect-status-env
|
789
|
-
;cgi.redirect_status_env =
|
790
|
-
|
791
|
-
; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
|
792
|
-
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
|
793
|
-
; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
|
794
|
-
; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
|
795
|
-
; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
|
796
|
-
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
|
797
|
-
; http://php.net/cgi.fix-pathinfo
|
798
|
-
;cgi.fix_pathinfo=1
|
799
|
-
|
800
|
-
; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
|
801
|
-
; of the web tree and people will not be able to circumvent .htaccess security.
|
802
|
-
;cgi.discard_path=1
|
803
|
-
|
804
|
-
; FastCGI under IIS supports the ability to impersonate
|
805
|
-
; security tokens of the calling client. This allows IIS to define the
|
806
|
-
; security context that the request runs under. mod_fastcgi under Apache
|
807
|
-
; does not currently support this feature (03/17/2002)
|
808
|
-
; Set to 1 if running under IIS. Default is zero.
|
809
|
-
; http://php.net/fastcgi.impersonate
|
810
|
-
;fastcgi.impersonate = 1
|
811
|
-
|
812
|
-
; Disable logging through FastCGI connection. PHP's default behavior is to enable
|
813
|
-
; this feature.
|
814
|
-
;fastcgi.logging = 0
|
815
|
-
|
816
|
-
; cgi.rfc2616_headers configuration option tells PHP what type of headers to
|
817
|
-
; use when sending HTTP response code. If set to 0, PHP sends Status: header that
|
818
|
-
; is supported by Apache. When this option is set to 1, PHP will send
|
819
|
-
; RFC2616 compliant header.
|
820
|
-
; Default is zero.
|
821
|
-
; http://php.net/cgi.rfc2616-headers
|
822
|
-
;cgi.rfc2616_headers = 0
|
823
|
-
|
824
|
-
; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
|
825
|
-
; (shebang) at the top of the running script. This line might be needed if the
|
826
|
-
; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
|
827
|
-
; mode skips this line and ignores its content if this directive is turned on.
|
828
|
-
; http://php.net/cgi.check-shebang-line
|
829
|
-
;cgi.check_shebang_line=1
|
830
|
-
|
831
360
|
;;;;;;;;;;;;;;;;
|
832
361
|
; File Uploads ;
|
833
362
|
;;;;;;;;;;;;;;;;
|
@@ -836,11 +365,6 @@ enable_dl = Off
|
|
836
365
|
; http://php.net/file-uploads
|
837
366
|
file_uploads = On
|
838
367
|
|
839
|
-
; Temporary directory for HTTP uploaded files (will use system default if not
|
840
|
-
; specified).
|
841
|
-
; http://php.net/upload-tmp-dir
|
842
|
-
;upload_tmp_dir =
|
843
|
-
|
844
368
|
; Maximum allowed size for uploaded files.
|
845
369
|
; http://php.net/upload-max-filesize
|
846
370
|
upload_max_filesize = 4096M
|
@@ -860,94 +384,10 @@ allow_url_fopen = On
|
|
860
384
|
; http://php.net/allow-url-include
|
861
385
|
allow_url_include = Off
|
862
386
|
|
863
|
-
; Define the anonymous ftp password (your email address). PHP's default setting
|
864
|
-
; for this is empty.
|
865
|
-
; http://php.net/from
|
866
|
-
;from="john@doe.com"
|
867
|
-
|
868
|
-
; Define the User-Agent string. PHP's default setting for this is empty.
|
869
|
-
; http://php.net/user-agent
|
870
|
-
;user_agent="PHP"
|
871
|
-
|
872
387
|
; Default timeout for socket based streams (seconds)
|
873
388
|
; http://php.net/default-socket-timeout
|
874
389
|
default_socket_timeout = 60
|
875
390
|
|
876
|
-
; If your scripts have to deal with files from Macintosh systems,
|
877
|
-
; or you are running on a Mac and need to deal with files from
|
878
|
-
; unix or win32 systems, setting this flag will cause PHP to
|
879
|
-
; automatically detect the EOL character in those files so that
|
880
|
-
; fgets() and file() will work regardless of the source of the file.
|
881
|
-
; http://php.net/auto-detect-line-endings
|
882
|
-
;auto_detect_line_endings = Off
|
883
|
-
|
884
|
-
;;;;;;;;;;;;;;;;;;;;;;
|
885
|
-
; Dynamic Extensions ;
|
886
|
-
;;;;;;;;;;;;;;;;;;;;;;
|
887
|
-
|
888
|
-
; If you wish to have an extension loaded automatically, use the following
|
889
|
-
; syntax:
|
890
|
-
;
|
891
|
-
; extension=modulename
|
892
|
-
;
|
893
|
-
; For example:
|
894
|
-
;
|
895
|
-
; extension=mysqli
|
896
|
-
;
|
897
|
-
; When the extension library to load is not located in the default extension
|
898
|
-
; directory, You may specify an absolute path to the library file:
|
899
|
-
;
|
900
|
-
; extension=/path/to/extension/mysqli.so
|
901
|
-
;
|
902
|
-
; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
|
903
|
-
; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
|
904
|
-
; deprecated in a future PHP major version. So, when it is possible, please
|
905
|
-
; move to the new ('extension=<ext>) syntax.
|
906
|
-
;
|
907
|
-
; Notes for Windows environments :
|
908
|
-
;
|
909
|
-
; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
|
910
|
-
; extension folders as well as the separate PECL DLL download (PHP 5+).
|
911
|
-
; Be sure to appropriately set the extension_dir directive.
|
912
|
-
;
|
913
|
-
;extension=bz2
|
914
|
-
;extension=curl
|
915
|
-
;extension=ffi
|
916
|
-
;extension=ftp
|
917
|
-
;extension=fileinfo
|
918
|
-
;extension=gd2
|
919
|
-
;extension=gettext
|
920
|
-
;extension=gmp
|
921
|
-
;extension=intl
|
922
|
-
;extension=imap
|
923
|
-
;extension=ldap
|
924
|
-
;extension=mbstring
|
925
|
-
;extension=exif ; Must be after mbstring as it depends on it
|
926
|
-
;extension=mysqli
|
927
|
-
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
|
928
|
-
;extension=odbc
|
929
|
-
;extension=openssl
|
930
|
-
;extension=pdo_firebird
|
931
|
-
;extension=pdo_mysql
|
932
|
-
;extension=pdo_oci
|
933
|
-
;extension=pdo_odbc
|
934
|
-
;extension=pdo_pgsql
|
935
|
-
;extension=pdo_sqlite
|
936
|
-
;extension=pgsql
|
937
|
-
;extension=shmop
|
938
|
-
|
939
|
-
; The MIBS data available in the PHP distribution must be installed.
|
940
|
-
; See http://www.php.net/manual/en/snmp.installation.php
|
941
|
-
;extension=snmp
|
942
|
-
|
943
|
-
;extension=soap
|
944
|
-
;extension=sockets
|
945
|
-
;extension=sodium
|
946
|
-
;extension=sqlite3
|
947
|
-
;extension=tidy
|
948
|
-
;extension=xmlrpc
|
949
|
-
;extension=xsl
|
950
|
-
|
951
391
|
;;;;;;;;;;;;;;;;;;;
|
952
392
|
; Module Settings ;
|
953
393
|
;;;;;;;;;;;;;;;;;;;
|
@@ -957,103 +397,22 @@ default_socket_timeout = 60
|
|
957
397
|
cli_server.color = On
|
958
398
|
|
959
399
|
[Date]
|
960
|
-
; Defines the default timezone used by the date functions
|
961
|
-
; http://php.net/date.timezone
|
962
|
-
;date.timezone =
|
963
|
-
|
964
|
-
; http://php.net/date.default-latitude
|
965
|
-
;date.default_latitude = 31.7667
|
966
|
-
|
967
|
-
; http://php.net/date.default-longitude
|
968
|
-
;date.default_longitude = 35.2333
|
969
|
-
|
970
|
-
; http://php.net/date.sunrise-zenith
|
971
|
-
;date.sunrise_zenith = 90.583333
|
972
|
-
|
973
|
-
; http://php.net/date.sunset-zenith
|
974
|
-
;date.sunset_zenith = 90.583333
|
975
400
|
|
976
401
|
[filter]
|
977
|
-
; http://php.net/filter.default
|
978
|
-
;filter.default = unsafe_raw
|
979
|
-
|
980
|
-
; http://php.net/filter.default-flags
|
981
|
-
;filter.default_flags =
|
982
402
|
|
983
403
|
[iconv]
|
984
|
-
; Use of this INI entry is deprecated, use global input_encoding instead.
|
985
|
-
; If empty, default_charset or input_encoding or iconv.input_encoding is used.
|
986
|
-
; The precedence is: default_charset < input_encoding < iconv.input_encoding
|
987
|
-
;iconv.input_encoding =
|
988
|
-
|
989
|
-
; Use of this INI entry is deprecated, use global internal_encoding instead.
|
990
|
-
; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
|
991
|
-
; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
|
992
|
-
;iconv.internal_encoding =
|
993
|
-
|
994
|
-
; Use of this INI entry is deprecated, use global output_encoding instead.
|
995
|
-
; If empty, default_charset or output_encoding or iconv.output_encoding is used.
|
996
|
-
; The precedence is: default_charset < output_encoding < iconv.output_encoding
|
997
|
-
; To use an output encoding conversion, iconv's output handler must be set
|
998
|
-
; otherwise output encoding conversion cannot be performed.
|
999
|
-
;iconv.output_encoding =
|
1000
404
|
|
1001
405
|
[imap]
|
1002
|
-
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
|
1003
|
-
; enable them. Note that the IMAP library does not filter mailbox names before
|
1004
|
-
; passing them to rsh/ssh command, thus passing untrusted data to this function
|
1005
|
-
; with rsh/ssh enabled is insecure.
|
1006
|
-
;imap.enable_insecure_rsh=0
|
1007
406
|
|
1008
407
|
[intl]
|
1009
|
-
;intl.default_locale =
|
1010
|
-
; This directive allows you to produce PHP errors when some error
|
1011
|
-
; happens within intl functions. The value is the level of the error produced.
|
1012
|
-
; Default is 0, which does not produce any errors.
|
1013
|
-
;intl.error_level = E_WARNING
|
1014
|
-
;intl.use_exceptions = 0
|
1015
408
|
|
1016
409
|
[sqlite3]
|
1017
|
-
; Directory pointing to SQLite3 extensions
|
1018
|
-
; http://php.net/sqlite3.extension-dir
|
1019
|
-
;sqlite3.extension_dir =
|
1020
|
-
|
1021
|
-
; SQLite defensive mode flag (only available from SQLite 3.26+)
|
1022
|
-
; When the defensive flag is enabled, language features that allow ordinary
|
1023
|
-
; SQL to deliberately corrupt the database file are disabled. This forbids
|
1024
|
-
; writing directly to the schema, shadow tables (eg. FTS data tables), or
|
1025
|
-
; the sqlite_dbpage virtual table.
|
1026
|
-
; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
|
1027
|
-
; (for older SQLite versions, this flag has no use)
|
1028
|
-
;sqlite3.defensive = 1
|
1029
410
|
|
1030
411
|
[Pcre]
|
1031
|
-
; PCRE library backtracking limit.
|
1032
|
-
; http://php.net/pcre.backtrack-limit
|
1033
|
-
;pcre.backtrack_limit=100000
|
1034
|
-
|
1035
|
-
; PCRE library recursion limit.
|
1036
|
-
; Please note that if you set this value to a high number you may consume all
|
1037
|
-
; the available process stack and eventually crash PHP (due to reaching the
|
1038
|
-
; stack size limit imposed by the Operating System).
|
1039
|
-
; http://php.net/pcre.recursion-limit
|
1040
|
-
;pcre.recursion_limit=100000
|
1041
|
-
|
1042
|
-
; Enables or disables JIT compilation of patterns. This requires the PCRE
|
1043
|
-
; library to be compiled with JIT support.
|
1044
|
-
;pcre.jit=1
|
1045
412
|
|
1046
413
|
[Pdo]
|
1047
|
-
; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
|
1048
|
-
; http://php.net/pdo-odbc.connection-pooling
|
1049
|
-
;pdo_odbc.connection_pooling=strict
|
1050
|
-
|
1051
|
-
;pdo_odbc.db2_instance_name
|
1052
414
|
|
1053
415
|
[Pdo_mysql]
|
1054
|
-
; Default socket name for local MySQL connects. If empty, uses the built-in
|
1055
|
-
; MySQL defaults.
|
1056
|
-
pdo_mysql.default_socket=
|
1057
416
|
|
1058
417
|
[Phar]
|
1059
418
|
; http://php.net/phar.readonly
|
@@ -1071,41 +430,10 @@ SMTP = localhost
|
|
1071
430
|
; http://php.net/smtp-port
|
1072
431
|
smtp_port = 25
|
1073
432
|
|
1074
|
-
; For Win32 only.
|
1075
|
-
; http://php.net/sendmail-from
|
1076
|
-
;sendmail_from = me@example.com
|
1077
|
-
|
1078
|
-
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
|
1079
|
-
; http://php.net/sendmail-path
|
1080
|
-
;sendmail_path =
|
1081
|
-
|
1082
|
-
; Force the addition of the specified parameters to be passed as extra parameters
|
1083
|
-
; to the sendmail binary. These parameters will always replace the value of
|
1084
|
-
; the 5th parameter to mail().
|
1085
|
-
;mail.force_extra_parameters =
|
1086
|
-
|
1087
433
|
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
|
1088
434
|
mail.add_x_header = Off
|
1089
435
|
|
1090
|
-
; The path to a log file that will log all mail() calls. Log entries include
|
1091
|
-
; the full path of the script, line number, To address and headers.
|
1092
|
-
;mail.log =
|
1093
|
-
; Log mail to syslog (Event Log on Windows).
|
1094
|
-
;mail.log = syslog
|
1095
|
-
|
1096
436
|
[ODBC]
|
1097
|
-
; http://php.net/odbc.default-db
|
1098
|
-
;odbc.default_db = Not yet implemented
|
1099
|
-
|
1100
|
-
; http://php.net/odbc.default-user
|
1101
|
-
;odbc.default_user = Not yet implemented
|
1102
|
-
|
1103
|
-
; http://php.net/odbc.default-pw
|
1104
|
-
;odbc.default_pw = Not yet implemented
|
1105
|
-
|
1106
|
-
; Controls the ODBC cursor model.
|
1107
|
-
; Default: SQL_CURSOR_STATIC (default).
|
1108
|
-
;odbc.default_cursortype
|
1109
437
|
|
1110
438
|
; Allow or prevent persistent links.
|
1111
439
|
; http://php.net/odbc.allow-persistent
|
@@ -1217,59 +545,6 @@ mysqlnd.collect_memory_statistics = Off
|
|
1217
545
|
; key.
|
1218
546
|
;mysqlnd.sha256_server_public_key =
|
1219
547
|
|
1220
|
-
[OCI8]
|
1221
|
-
|
1222
|
-
; Connection: Enables privileged connections using external
|
1223
|
-
; credentials (OCI_SYSOPER, OCI_SYSDBA)
|
1224
|
-
; http://php.net/oci8.privileged-connect
|
1225
|
-
;oci8.privileged_connect = Off
|
1226
|
-
|
1227
|
-
; Connection: The maximum number of persistent OCI8 connections per
|
1228
|
-
; process. Using -1 means no limit.
|
1229
|
-
; http://php.net/oci8.max-persistent
|
1230
|
-
;oci8.max_persistent = -1
|
1231
|
-
|
1232
|
-
; Connection: The maximum number of seconds a process is allowed to
|
1233
|
-
; maintain an idle persistent connection. Using -1 means idle
|
1234
|
-
; persistent connections will be maintained forever.
|
1235
|
-
; http://php.net/oci8.persistent-timeout
|
1236
|
-
;oci8.persistent_timeout = -1
|
1237
|
-
|
1238
|
-
; Connection: The number of seconds that must pass before issuing a
|
1239
|
-
; ping during oci_pconnect() to check the connection validity. When
|
1240
|
-
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
|
1241
|
-
; pings completely.
|
1242
|
-
; http://php.net/oci8.ping-interval
|
1243
|
-
;oci8.ping_interval = 60
|
1244
|
-
|
1245
|
-
; Connection: Set this to a user chosen connection class to be used
|
1246
|
-
; for all pooled server requests with Oracle 11g Database Resident
|
1247
|
-
; Connection Pooling (DRCP). To use DRCP, this value should be set to
|
1248
|
-
; the same string for all web servers running the same application,
|
1249
|
-
; the database pool must be configured, and the connection string must
|
1250
|
-
; specify to use a pooled server.
|
1251
|
-
;oci8.connection_class =
|
1252
|
-
|
1253
|
-
; High Availability: Using On lets PHP receive Fast Application
|
1254
|
-
; Notification (FAN) events generated when a database node fails. The
|
1255
|
-
; database must also be configured to post FAN events.
|
1256
|
-
;oci8.events = Off
|
1257
|
-
|
1258
|
-
; Tuning: This option enables statement caching, and specifies how
|
1259
|
-
; many statements to cache. Using 0 disables statement caching.
|
1260
|
-
; http://php.net/oci8.statement-cache-size
|
1261
|
-
;oci8.statement_cache_size = 20
|
1262
|
-
|
1263
|
-
; Tuning: Enables statement prefetching and sets the default number of
|
1264
|
-
; rows that will be fetched automatically after statement execution.
|
1265
|
-
; http://php.net/oci8.default-prefetch
|
1266
|
-
;oci8.default_prefetch = 100
|
1267
|
-
|
1268
|
-
; Compatibility. Using On means oci_close() will not close
|
1269
|
-
; oci_connect() and oci_new_connect() connections.
|
1270
|
-
; http://php.net/oci8.old-oci-close-semantics
|
1271
|
-
;oci8.old_oci_close_semantics = Off
|
1272
|
-
|
1273
548
|
[PostgreSQL]
|
1274
549
|
; Allow or prevent persistent links.
|
1275
550
|
; http://php.net/pgsql.allow-persistent
|
@@ -1763,155 +1038,6 @@ ldap.max_links = -1
|
|
1763
1038
|
[dba]
|
1764
1039
|
;dba.default_handler=
|
1765
1040
|
|
1766
|
-
[opcache]
|
1767
|
-
; Determines if Zend OPCache is enabled
|
1768
|
-
;opcache.enable=1
|
1769
|
-
|
1770
|
-
; Determines if Zend OPCache is enabled for the CLI version of PHP
|
1771
|
-
;opcache.enable_cli=0
|
1772
|
-
|
1773
|
-
; The OPcache shared memory storage size.
|
1774
|
-
;opcache.memory_consumption=128
|
1775
|
-
|
1776
|
-
; The amount of memory for interned strings in Mbytes.
|
1777
|
-
;opcache.interned_strings_buffer=8
|
1778
|
-
|
1779
|
-
; The maximum number of keys (scripts) in the OPcache hash table.
|
1780
|
-
; Only numbers between 200 and 1000000 are allowed.
|
1781
|
-
;opcache.max_accelerated_files=10000
|
1782
|
-
|
1783
|
-
; The maximum percentage of "wasted" memory until a restart is scheduled.
|
1784
|
-
;opcache.max_wasted_percentage=5
|
1785
|
-
|
1786
|
-
; When this directive is enabled, the OPcache appends the current working
|
1787
|
-
; directory to the script key, thus eliminating possible collisions between
|
1788
|
-
; files with the same name (basename). Disabling the directive improves
|
1789
|
-
; performance, but may break existing applications.
|
1790
|
-
;opcache.use_cwd=1
|
1791
|
-
|
1792
|
-
; When disabled, you must reset the OPcache manually or restart the
|
1793
|
-
; webserver for changes to the filesystem to take effect.
|
1794
|
-
;opcache.validate_timestamps=1
|
1795
|
-
|
1796
|
-
; How often (in seconds) to check file timestamps for changes to the shared
|
1797
|
-
; memory storage allocation. ("1" means validate once per second, but only
|
1798
|
-
; once per request. "0" means always validate)
|
1799
|
-
;opcache.revalidate_freq=2
|
1800
|
-
|
1801
|
-
; Enables or disables file search in include_path optimization
|
1802
|
-
;opcache.revalidate_path=0
|
1803
|
-
|
1804
|
-
; If disabled, all PHPDoc comments are dropped from the code to reduce the
|
1805
|
-
; size of the optimized code.
|
1806
|
-
;opcache.save_comments=1
|
1807
|
-
|
1808
|
-
; Allow file existence override (file_exists, etc.) performance feature.
|
1809
|
-
;opcache.enable_file_override=0
|
1810
|
-
|
1811
|
-
; A bitmask, where each bit enables or disables the appropriate OPcache
|
1812
|
-
; passes
|
1813
|
-
;opcache.optimization_level=0x7FFFBFFF
|
1814
|
-
|
1815
|
-
;opcache.dups_fix=0
|
1816
|
-
|
1817
|
-
; The location of the OPcache blacklist file (wildcards allowed).
|
1818
|
-
; Each OPcache blacklist file is a text file that holds the names of files
|
1819
|
-
; that should not be accelerated. The file format is to add each filename
|
1820
|
-
; to a new line. The filename may be a full path or just a file prefix
|
1821
|
-
; (i.e., /var/www/x blacklists all the files and directories in /var/www
|
1822
|
-
; that start with 'x'). Line starting with a ; are ignored (comments).
|
1823
|
-
;opcache.blacklist_filename=
|
1824
|
-
|
1825
|
-
; Allows exclusion of large files from being cached. By default all files
|
1826
|
-
; are cached.
|
1827
|
-
;opcache.max_file_size=0
|
1828
|
-
|
1829
|
-
; Check the cache checksum each N requests.
|
1830
|
-
; The default value of "0" means that the checks are disabled.
|
1831
|
-
;opcache.consistency_checks=0
|
1832
|
-
|
1833
|
-
; How long to wait (in seconds) for a scheduled restart to begin if the cache
|
1834
|
-
; is not being accessed.
|
1835
|
-
;opcache.force_restart_timeout=180
|
1836
|
-
|
1837
|
-
; OPcache error_log file name. Empty string assumes "stderr".
|
1838
|
-
;opcache.error_log=
|
1839
|
-
|
1840
|
-
; All OPcache errors go to the Web server log.
|
1841
|
-
; By default, only fatal errors (level 0) or errors (level 1) are logged.
|
1842
|
-
; You can also enable warnings (level 2), info messages (level 3) or
|
1843
|
-
; debug messages (level 4).
|
1844
|
-
;opcache.log_verbosity_level=1
|
1845
|
-
|
1846
|
-
; Preferred Shared Memory back-end. Leave empty and let the system decide.
|
1847
|
-
;opcache.preferred_memory_model=
|
1848
|
-
|
1849
|
-
; Protect the shared memory from unexpected writing during script execution.
|
1850
|
-
; Useful for internal debugging only.
|
1851
|
-
;opcache.protect_memory=0
|
1852
|
-
|
1853
|
-
; Allows calling OPcache API functions only from PHP scripts which path is
|
1854
|
-
; started from specified string. The default "" means no restriction
|
1855
|
-
;opcache.restrict_api=
|
1856
|
-
|
1857
|
-
; Mapping base of shared memory segments (for Windows only). All the PHP
|
1858
|
-
; processes have to map shared memory into the same address space. This
|
1859
|
-
; directive allows to manually fix the "Unable to reattach to base address"
|
1860
|
-
; errors.
|
1861
|
-
;opcache.mmap_base=
|
1862
|
-
|
1863
|
-
; Facilitates multiple OPcache instances per user (for Windows only). All PHP
|
1864
|
-
; processes with the same cache ID and user share an OPcache instance.
|
1865
|
-
;opcache.cache_id=
|
1866
|
-
|
1867
|
-
; Enables and sets the second level cache directory.
|
1868
|
-
; It should improve performance when SHM memory is full, at server restart or
|
1869
|
-
; SHM reset. The default "" disables file based caching.
|
1870
|
-
;opcache.file_cache=
|
1871
|
-
|
1872
|
-
; Enables or disables opcode caching in shared memory.
|
1873
|
-
;opcache.file_cache_only=0
|
1874
|
-
|
1875
|
-
; Enables or disables checksum validation when script loaded from file cache.
|
1876
|
-
;opcache.file_cache_consistency_checks=1
|
1877
|
-
|
1878
|
-
; Implies opcache.file_cache_only=1 for a certain process that failed to
|
1879
|
-
; reattach to the shared memory (for Windows only). Explicitly enabled file
|
1880
|
-
; cache is required.
|
1881
|
-
;opcache.file_cache_fallback=1
|
1882
|
-
|
1883
|
-
; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
|
1884
|
-
; This should improve performance, but requires appropriate OS configuration.
|
1885
|
-
;opcache.huge_code_pages=1
|
1886
|
-
|
1887
|
-
; Validate cached file permissions.
|
1888
|
-
;opcache.validate_permission=0
|
1889
|
-
|
1890
|
-
; Prevent name collisions in chroot'ed environment.
|
1891
|
-
;opcache.validate_root=0
|
1892
|
-
|
1893
|
-
; If specified, it produces opcode dumps for debugging different stages of
|
1894
|
-
; optimizations.
|
1895
|
-
;opcache.opt_debug_level=0
|
1896
|
-
|
1897
|
-
; Specifies a PHP script that is going to be compiled and executed at server
|
1898
|
-
; start-up.
|
1899
|
-
; http://php.net/opcache.preload
|
1900
|
-
;opcache.preload=
|
1901
|
-
|
1902
|
-
; Preloading code as root is not allowed for security reasons. This directive
|
1903
|
-
; facilitates to let the preloading to be run as another user.
|
1904
|
-
; http://php.net/opcache.preload_user
|
1905
|
-
;opcache.preload_user=
|
1906
|
-
|
1907
|
-
; Prevents caching files that are less than this number of seconds old. It
|
1908
|
-
; protects from caching of incompletely updated files. In case all file updates
|
1909
|
-
; on your site are atomic, you may increase performance by setting it to "0".
|
1910
|
-
;opcache.file_update_protection=2
|
1911
|
-
|
1912
|
-
; Absolute path used to store shared lockfiles (for *nix only).
|
1913
|
-
;opcache.lockfile_path=/tmp
|
1914
|
-
|
1915
1041
|
[curl]
|
1916
1042
|
; A default value for the CURLOPT_CAINFO option. This is required to be an
|
1917
1043
|
; absolute path.
|