18 lines
528 B
INI
18 lines
528 B
INI
[xdebug]
|
|
zend_extension = xdebug.so
|
|
xdebug.remote_enable = 1
|
|
xdebug.remote_host = 172.17.0.1
|
|
xdebug.remote_connect_back = 1 # Not safe for production servers
|
|
xdebug.remote_port = 9000
|
|
xdebug.idekey = VSCODE
|
|
xdebug.remote_handler = dbgp
|
|
xdebug.remote_mode = req
|
|
xdebug.remote_autostart = true
|
|
xdebug.remote_log = "/var/log/xdebug/xdebug.log"
|
|
xdebug.force_display_errors = On
|
|
|
|
# Activation du Profiler
|
|
xdebug.profiler_enable = 1
|
|
xdebug.profiler_output_dir = "/var/log/xdebug/"
|
|
xdebug.profiler_output_name = "cachegrind.%s.out"
|