--- title: "Proxy Server" slug: "proxy-server" updated: 2024-09-17T13:20:56Z published: 2024-09-17T13:20:56Z canonical: "help.hyperscience.ai/proxy-server" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.hyperscience.ai/llms.txt > Use this file to discover all available pages before exploring further. # Proxy Server ## 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=
HTTPS_PROXY=
NO_PROXY= ``` Note that if your proxies require authentication, it can be added in the following form: > ```http > proto://user:pass@host:port > ``` *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 ```