How to send the Controller's web traffic through a web proxy, in environments where required.
Advanced: The following article requires manual edition of the config.json. It is recommended you make a backup of the file before editing.
Quick Start:
To configure the Controller to use a proxy explicitly, open the config.json located at (default installation path):
C:\Program Files\Infocyte\HUNT Controller
find the "RemoteApiUrl" property at the end of the file:
"RemoteApiUrl": "https://myinfocyte.infocyte.com"
add a comma "," at the end of this line,
press "Enter" on the keyboard to make a new line,
add the proxy config below, before the last closing bracket "}" (replace the values with your proxy's specific settings):
"Proxy": {
"UseProxy": true,
"UseAuthentication": true,
"ProxyAddress": "127.0.0.1",
"ProxyPort": 8080,
"ProxyUsername": "some_user",
"ProxyPassword": "some_password"
}
The final result will look like:
"RemoteApiUrl": "https://myinfocyte.infocyte.com",
"Proxy": {
"UseProxy": true,
"UseAuthentication": true,
"ProxyAddress": "127.0.0.1",
"ProxyPort": 8080,
"ProxyUsername": "some_user",
"ProxyPassword": "some_password"
}
}
Restart the Controller for changes to take effect.
Comments
0 comments
Please sign in to leave a comment.