Skip to content

Instantly share code, notes, and snippets.

@kwn
Last active November 11, 2021 10:18
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kwn/d13319488361a506d199 to your computer and use it in GitHub Desktop.
Save kwn/d13319488361a506d199 to your computer and use it in GitHub Desktop.
Xdebug config with autostart
zend_extension=xdebug.so
xdebug.default_enable = 1
xdebug.cli_color = 1
xdebug.overload_var_dump = 1
xdebug.var_display_max_children = -1
xdebug.var_display_max_data = 4096
xdebug.var_display_max_depth = 10
xdebug.max_nesting_level = 250
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.idekey = phpstorm
xdebug.remote_host = 192.168.1.60
xdebug.remote_log="/tmp/xdebug.log"
// xdebug3
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.client_host=192.168.100.68
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment