piotranon

XDEBUG

Aug 3rd, 2021
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Parameters description could be found here: https://xdebug.org/docs/remote
  2. # Also, for PhpStorm, configuration tips could be found here: https://www.jetbrains.com/help/phpstorm/configuring-xdebug.html
  3. zend_extension=xdebug.so
  4. xdebug.mode=debug
  5. # the default port for XDebug 3 is 9003, not 9000
  6. xdebug.client_port=9004
  7. # The line below is commented. This is the IP of your host machine, where your IDE is installed.
  8. # We set this IP via XDEBUG_CONFIG environment variable in docker-compose.yml instead.
  9. #xdebug.client_host=192.168.1.2
Add Comment
Please, Sign In to add comment