For the complete documentation index, see llms.txt. This page is also available as Markdown.

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:

    <environmentVariables>
      <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" />
      <environmentVariable name="http_proxy" value="http://proxy:port" />
      <environmentVariable name="https_proxy" value="http://proxy:port" />
    </environmentVariables>

For more options, refer to Configure using environment variables.

4. Save and close the file.

Last updated

Was this helpful?