> For the complete documentation index, see [llms.txt](https://docs.storware.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.storware.eu/70/deployment/common-tasks/enabling-proxy.md).

# Enabling HTTP(S) Proxy for Storware Backup & Recovery

You can configure the system to communicate through an HTTP(S) proxy. You can configure the `HTTP_PROXY` and `HTTPS_PROXY` environment variables using the `vprotect.env` file.

1. Edit the vprotect.env file that is located in `/opt/vprotect/vprotect.env`. Uncomment the following lines and specify the correct proxy address:

   ```
   http_proxy="proxy.address:8080"
   https_proxy="proxy.adress:8080"
   no_proxy="localhost,127.0.0.1"
   ```

   <div data-gb-custom-block data-tag="hint" data-style="info" class="hint hint-info"><p>Make sure to change proxy.address to the address of your proxy, it can be either IP address or FQDN.</p></div>
2. Restart the Storware Backup & Recovery Node and Server to apply the changes.

   ```
   systemctl restart vprotect-node vprotect-server
   ```

Repeat above steps for each host where the Server and/or Node is installed.


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.storware.eu/70/deployment/common-tasks/enabling-proxy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
