From 68bed28b3707dda4a7685583f15537b55101fc5b Mon Sep 17 00:00:00 2001 From: mindspawn Date: Wed, 5 Jun 2024 17:37:40 -0700 Subject: [PATCH] Update env-configuration.md to describe proxy behavior. --- docs/getting-started/env-configuration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/getting-started/env-configuration.md b/docs/getting-started/env-configuration.md index a2c8c73..221dd2d 100644 --- a/docs/getting-started/env-configuration.md +++ b/docs/getting-started/env-configuration.md @@ -516,3 +516,17 @@ You will need to either migrate to [pipelines](https://github.com/open-webui/pip - Default: `127.0.0.1` - Description: Sets the address to run the bundled LiteLLM instance on. + +## Misc Environment Variables +These variables are not specific to Open-Webui but can still be valuable in certain contexts. + +### Proxy Settings +Open-Webui supports using proxies for HTTP and HTTPS retrievals. To specify proxy settings, Open-Webui uses the following environment variables: + +#### `http_proxy` +#### `https_proxy` +- These variables, if set, should contain the URLs for HTTP and HTTPS proxies, respectively. + +#### `no_proxy` +- This variable lists domain extensions (or IP addresses) for which the proxy should not be used, separated by commas. For example, setting no_proxy to '.mit.edu' ensures that the proxy is bypassed when accessing documents from MIT. +