Created
September 3, 2020 15:15
-
-
Save pthiers/908120b9c7e643d8eb791b8b9cfef132 to your computer and use it in GitHub Desktop.
xdebug configuration for docker in linux
This file contains hidden or 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=xdebug.so | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_connect_back=1 | |
xdebug.remote_port=9001 | |
xdebug.remote_autostart=1 | |
xdebug.remote_host=172.17.0.1 | |
xdebug.idekey=PHPSTORM | |
xdebug.default_enable=0 | |
xdebug.profiler_aggregate=0 | |
xdebug.profiler_append=0 | |
xdebug.profiler_enable=0 | |
xdebug.profiler_enable_trigger=1 | |
xdebug.profiler_output_dir=/tmp/shared/ | |
xdebug.profiler_output_name=xdebug-profile-cachegrind.out-%p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment