forked from platformsh-templates/magento2ce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp.ini
46 lines (38 loc) · 746 Bytes
/
php.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
; php.ini
;
; Increase PHP memory limit
;
memory_limit = 512M
;
; enable resulting html compression
;
zlib.output_compression = on
;
; Increase realpath cache size
;
realpath_cache_size = 10M
;
; Increase realpath cache ttl
;
realpath_cache_ttl = 7200
;
; Multi store support
;
auto_prepend_file = /app/magento-vars.php
;
; Increase max input variables value
;
max_input_vars = 10000
;
; Setup the session garbage collector
;
session.gc_probability = 1
;
; Setup opcache configuration
;
opcache.validate_timestamps = 0
opcache.blacklist_filename="${PLATFORM_APP_DIR}/op-exclude.txt"
opcache.max_accelerated_files=16229
opcache.consistency_checks=0
; Below can be increased to 2048 on a larger application
opcache.memory_consumption = 128