Skip to content

Instantly share code, notes, and snippets.

@FredyRosero
Created October 16, 2023 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FredyRosero/364af18e271fd5ddd7d7b306ec2822ad to your computer and use it in GitHub Desktop.
Save FredyRosero/364af18e271fd5ddd7d7b306ec2822ad to your computer and use it in GitHub Desktop.
XDEBUG en 0.0.0.0:9003 to avoid IPv6 error
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug on Docker",
"type": "php",
"request": "launch",
"port": 9003,
"hostname": "0.0.0.0",
"pathMappings": {
"/var/www/html/": "${workspaceFolder}/www"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment