From 7ab0f64e17a31af24892770e72c2684b7a4eaaa5 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 24 Apr 2024 11:07:41 -0500 Subject: [PATCH] Document support for HTTP proxy variables (#3247) Closes https://github.com/astral-sh/uv/issues/3233 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b881015c7..4ffb8687f 100644 --- a/README.md +++ b/README.md @@ -515,6 +515,7 @@ In addition, uv respects the following environment variables: any filter compatible with the `tracing_subscriber` crate. For example, `RUST_LOG=trace` will enable trace-level logging. See the [tracing documentation](https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#example-syntax) for more. +- `HTTP_PROXY`, `HTTPS_PROXY`, `ALL_PROXY`: The proxy to use for all HTTP/HTTPS requests. - `HTTP_TIMEOUT` (or `UV_HTTP_TIMEOUT`): If set, uv will use this value (in seconds) as the timeout for HTTP reads (default: 30s). - `PYC_INVALIDATION_MODE`: The validation modes to use when run with `--compile`.