To add a proxy in Devolutions Server, you need to add a few command lines to the web.config file.
- Locate and open the web.config file. Its default location is C:\inetpub\wwwroot\dvls\web.config.
- In the file, locate the
<environmentVariables>
and</environmentVariables>
tags. - Add the following code between them, replacing the values with your information:
<environmentVariable name="http_proxy" value="myproxyaddress"/> <environmentVariable name="https_proxy" value="myproxyaddress"/>
For more options, refer to Configuring a proxy using environment variables.
- Save and close the file.