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

Añadir un proxy en Devolutions Server

Para añadir un proxy en Devolutions Server, debe añadir algunas líneas de comandos al fichero web.config.

  1. Localice y abra el fichero web.config. Su ubicación predeterminada es C:\inetpub\wwwroot\dvls\web.config.

  2. En el fichero, localice las etiquetas <environmentVariables> y </environmentVariables>.

  3. Añada el siguiente código entre ellas, sustituyendo los valores por su información:

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

Para más opciones, consulte Configure using environment variables.

4. Guarde y cierre el fichero.

Última actualización

¿Te fue útil?