Skip to content

Instantly share code, notes, and snippets.

@mustardandrew
Last active August 10, 2021 09:14
Show Gist options
  • Save mustardandrew/0cd3e406bc832796ff9b81149c24597b to your computer and use it in GitHub Desktop.
Save mustardandrew/0cd3e406bc832796ff9b81149c24597b to your computer and use it in GitHub Desktop.
Xdebug config
[Xdebug]
zend_extension="/usr/lib/php5/20131226/xdebug.so"
xdebug.remote_autostart=on
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9001
xdebug.max_nesting_level=300
xdebug.idekey="PHPSTORM"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/home/mustardandrew/tmp"
xdebug.remote_connect_back=1
zend_extension=/usr/lib/php/20170718/xdebug.so
xdebug.remote_autostart = 1
xdebug.start_with_request = 1
xdebug.mode = debug
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.client_host = 127.0.0.1
xdebug.remote_log = /tmp/xdebug_remote.log
xdebug.remote_mode = req
xdebug.client_port = 9001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment