Skip to content

Instantly share code, notes, and snippets.

@hectorh30
Last active June 19, 2017 13:55
Show Gist options
  • Save hectorh30/7af9e89c81f819858445 to your computer and use it in GitHub Desktop.
Save hectorh30/7af9e89c81f819858445 to your computer and use it in GitHub Desktop.
Dev Xdebug config file
zend_extension=xdebug.so
# Default: 0
# When this setting is set to 1, Xdebug will always attempt to start a remote debugging session
# and try to connect to a client, even if the GET/POST/COOKIE variable is not present
xdebug.remote_autostart = 1
xdebug.remote_enable = 1
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.show_local_vars = 0
xdebug.var_display_max_data = 10000
xdebug.var_display_max_depth = 20
xdebug.show_exception_trace = 0
xdebug.remote_log = /var/log/xdebug/log
xdebug.max_nesting_level = 1000
xdebug.idekey = 'sublime.xdebug'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment