Git Servers Configuration File
If any modifications are made to the default IguanaX Git Servers settings, the new list of Git Servers and their connectivity information is saved in the working directory in a servers.json file:
<working directory>/config/settings/servers.json
It may look something like this:
{
"18.0.23.421": {
"http_port": 0,
"secure": false,
"ssh_port": 0,
"type": "Server - GitLab"
},
"bitbucket.org": {
"http_port": 0,
"secure": true,
"ssh_port": 0,
"type": "Cloud - Bitbucket"
},
"dev.azure.com": {
"http_port": 0,
"secure": true,
"ssh_port": 0,
"type": "Cloud - Azure Devops"
},
"github.com": {
"http_port": 0,
"secure": true,
"ssh_port": 0,
"type": "Cloud - GitHub"
},
"gitlab.com": {
"http_port": 0,
"secure": true,
"ssh_port": 0,
"type": "Cloud - GitLab"
}
}