Add a proxy in Devolutions Server

To add a proxy in Devolutions Server, you need to add a few command lines to the web.config file.

  1. Locate and open the web.config file. Its default location is C:\inetpub\wwwroot\dvls\web.config.
  2. In the file, locate the <environmentVariables> and </environmentVariables> tags.
  3. Add the following code between them, replacing the values with your information:
    <environmentVariable name="http_proxy" value="myproxyaddress"/>
    <environmentVariable name="https_proxy" value="myproxyaddress"/>
    
  4. Save and close the file.
Give us Feedback