Created
November 14, 2022 19:48
-
-
Save kmuenkel/c6ec64b7e09698799aacd666cf3b3547 to your computer and use it in GitHub Desktop.
Docker XDebug configs for browser callbacks version 2 and 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so | |
;Version 2 | |
xdebug.remote_autostart=0 | |
xdebug.remote_connect_back=0 | |
xdebug.remote_enable=On | |
xdebug.remote_handler=dbgp | |
xdebug.remote_host=host.docker.internal | |
xdebug.remote_mode=req | |
xdebug.remote_port=9003 | |
xdebug.idekey=PHPSTORM | |
;xdebug.config=remote_host=host.docker.internal | |
;Version 3 | |
xdebug.mode=debug,trace | |
;xdebug.mode=develop,debug,trace | |
xdebug.discover_client_host=false | |
xdebug.client_discovery_header=HTTP_XDCB | |
xdebug.client_host=host.docker.internal | |
xdebug.client_port=9003 | |
xdebug.start_with_request=default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment