11 lines
577 B
INI
Executable file
11 lines
577 B
INI
Executable file
# Parameters description could be found here: https://xdebug.org/docs/remote
|
|
# Also, for PhpStorm, configuration tips could be found here: https://www.jetbrains.com/help/phpstorm/configuring-xdebug.html
|
|
zend_extension=xdebug.so
|
|
xdebug.mode=debug
|
|
# the default port for XDebug 3 is 9003, not 9000
|
|
xdebug.client_port=9003
|
|
# The line below is commented. This is the IP of your host machine, where your IDE is installed.
|
|
# We set this IP via XDEBUG_CONFIG environment variable in docker-compose.yml instead.
|
|
xdebug.client_host=host.docker.internal
|
|
xdebug.start_with_request = yes
|
|
|