mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 13:14:41 +00:00
Document NO_PROXY support (#15816)
Closes https://github.com/astral-sh/uv/issues/15785.
This commit is contained in:
parent
9153d1a5e3
commit
bd8a9348bd
2 changed files with 7 additions and 0 deletions
|
|
@ -474,6 +474,9 @@ impl EnvVars {
|
|||
/// General proxy for all network requests.
|
||||
pub const ALL_PROXY: &'static str = "ALL_PROXY";
|
||||
|
||||
/// Comma-separated list of hostnames (e.g., `example.com`) and/or patterns (e.g., `192.168.1.0/24`) that should bypass the proxy.
|
||||
pub const NO_PROXY: &'static str = "NO_PROXY";
|
||||
|
||||
/// Timeout (in seconds) for HTTP requests. (default: 30 s)
|
||||
pub const UV_HTTP_TIMEOUT: &'static str = "UV_HTTP_TIMEOUT";
|
||||
|
||||
|
|
|
|||
|
|
@ -671,6 +671,10 @@ Disables colored output (takes precedence over `FORCE_COLOR`).
|
|||
|
||||
See [no-color.org](https://no-color.org).
|
||||
|
||||
### `NO_PROXY`
|
||||
|
||||
Comma-separated list of hostnames (e.g., `example.com`) and/or patterns (e.g., `192.168.1.0/24`) that should bypass the proxy.
|
||||
|
||||
### `NU_VERSION`
|
||||
|
||||
Used to detect `NuShell` usage.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue