forked from webdevops/php-docker-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
47 lines (37 loc) · 1.1 KB
/
development.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
47
; -------------------------------------
; DEVELOPMENT configuration
; -------------------------------------
; this file will overwrite default php.ini settings
display_errors = 1
short_open_tag = On
variables_order = 'GPCS'
request_order = 'GP'
allow_url_fopen = On
allow_url_include = Off
memory_limit = 512M
max_execution_time = 900
max_input_time = 300
post_max_size = 50M
upload_max_filesize = 50M
max_input_vars = 5000
expose_php = Off
date.timezone = Europe/Berlin
mysql.default_host = mysql
mysqli.default_host = mysql
; Zend OPCache
opcache.enable = 1
opcache.memory_consumption = 256
opcache.interned_strings_buffer = 16
opcache.max_accelerated_files = 10000
opcache.fast_shutdown = 1
opcache.enable_cli = 1
opcache.revalidate_freq = 0
; XDebug
xdebug.remote_enable = 1
xdebug.remote_connect_back = on
xdebug.idekey = "docker"
xdebug.cli_color = 1
xdebug.max_nesting_level = 1000
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = '/tmp/debug/'
xhprof.output_dir = '/tmp/debug/'