[quote=“layne”]
Just one thing: You can’t define different URLs for different Projects?
Or is it possible to configure this inside the project settings too?[/quote]
You can also define the URL, port, IDE key and path mapping for each project.
Configure it under the ‘xdebug’ key in your .sublime-project file, as shown below.
{
"folders":
{
"path": "..."
},
],
"settings": {
"xdebug": {
"path_mapping": {
"/path/to/file/on/server" : "/path/to/file/on/computer",
"/var/www/htdocs/example/" : "C:/git/websites/example/"
}
"ide_key": "your_custom_ide_key",
"url": "http://your.web.server",
"port": 9000
}
}
}