27 lines
592 B
INI
27 lines
592 B
INI
[PHP]
|
|
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
|
|
expose_php = Off
|
|
file_uploads = Off
|
|
max_execution_time=-1
|
|
memory_limit = 512M
|
|
|
|
[opcache]
|
|
opcache.enable = 1
|
|
opcache.enable_cli = 1
|
|
opcache.memory_consumption = 128
|
|
opcache.max_accelerated_files = 30000
|
|
opcache.revalidate_freq = 0
|
|
opcache.jit_buffer_size = 64M
|
|
opcache.jit = tracing
|
|
|
|
[xdebug]
|
|
; https://xdebug.org/docs/all_settings
|
|
zend_extension = xdebug.so
|
|
xdebug.mode = debug
|
|
xdebug.start_with_request = yes
|
|
xdebug.trigger_value = go
|
|
xdebug.client_host = host.docker.internal
|
|
xdebug.REQUEST = *
|
|
xdebug.SESSION = *
|
|
xdebug.SERVER = *
|