# Proxy Server

- Published on Sep 17, 2024
- 1 minute(s) read

## Proxy server setup

If proxy servers are required to make outbound HTTP or HTTPS connections in your environment, the application can be configured by setting the proxy configuration in the “.env” file. The following variables are supported:

```plaintext
HTTP_PROXY=<address in the form proto://host:port>
HTTPS_PROXY=<address in the form proto://host:port>
NO_PROXY=<comma-separated list of hosts or IP addresses>
```

Note that if your proxies require authentication, it can be added in the following form:

```http

```

_NO_PROXY_ takes the form of a comma-separated list of hosts and IP addresses, including wildcards, in the following form:

```http
localhost,127.0.0.1,*.your.domain
```
