xdebug.ini 590 B

123456789101112131415161718
  1. [xdebug]
  2. xdebug.remote_enable=1
  3. ;Should use host.docker.internal but not working on linux
  4. xdebug.remote_host=172.20.0.1
  5. ;Not working on docker context
  6. xdebug.remote_connect_back=0
  7. ;9000 is already bound by php-fpm
  8. xdebug.remote_port=9001
  9. xdebug.remote_handler=dbgp
  10. xdebug.remote_mode=req
  11. xdebug.remote_autostart=true
  12. ; ?=XDEBUG_SESSION_START=1
  13. ;Log file is mounted on volume so you can follow it
  14. xdebug.remote_log=/var/log/xdebug-error.log
  15. xdebug.profiler_enable_trigger=1
  16. xdebug.profiler_enable=0
  17. xdebug.profiler_output_dir=/var/log/
  18. ; Example: http://localhost:8080/test?XDEBUG_PROFILE=1