> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/rdm/knowledge-base/troubleshooting-articles/devolutions-server-cannot-update-when-using-a-proxy.md).

# Devolutions Server cannot update when using a proxy

Following the update to .NET 8.0, environments using a proxy may experience issues when Devolutions Server attempts to perform an update.

### Solution

To resolve this issue, configure Devolutions Server Console to use a custom proxy by defining the settings in an appsettings.json file:

1. Navigate to the Devolutions Server Console installation directory (`C:\Program Files (x86)\Devolutions\Devolutions Server Console`, for example).
2. In this directory, create a file named `appsettings.json`.
3. Add your proxy configuration to the file using the following example:

```json
  {
    "ProxySettings": {
      "Address": "XXX.XXX.X.XX:XXX",
      "BypassOnLocal": true,
      "ProxyCredentialSettingType": "WindowsCredentials",
      "Domain": "",
      "UserName": "",
      "Password": ""
    }
  }
```

4. Save the file.
5. Reopen the Devolutions Server Console and start the update process again.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.devolutions.net/rdm/knowledge-base/troubleshooting-articles/devolutions-server-cannot-update-when-using-a-proxy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
