Skip to content

Commit fa5bb07

Browse files
committed
React to feedback
1 parent 0564910 commit fa5bb07

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/azure/sdk/configure-proxy.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure a proxy when using the Azure SDK for .NET
33
description: Learn different approaches for configuring a proxy for use with the Azure SDK for .NET client libraries.
44
ms.topic: conceptual
55
ms.custom: devx-track-dotnet, engagement-fy23
6-
ms.date: 11/15/2024
6+
ms.date: 11/18/2024
77
---
88

99
# Configure a proxy when using the Azure SDK for .NET
@@ -31,17 +31,17 @@ Using the Azure Key Vault Secrets library as an example, you'd have the followin
3131

3232
The following table provides an inventory of environment variables that can be set to configure a proxy for use.
3333

34-
| Environment variable | Purpose |
35-
|----------------------|-------------------------------------------------------------------------------------------------------------|
36-
| `HTTP_PROXY` | The proxy server used on HTTP requests. |
37-
| `HTTPS_PROXY` | The proxy server used on HTTPS requests. |
38-
| `ALL_PROXY` | The proxy server used for both HTTP and HTTPS requests. |
39-
| `NO_PROXY` | A comma-delimited list of hostnames to exclude from proxying. |
40-
| `GATEWAY_INTERFACE` | Indicator that the app is running in a Common Gateway Interface (CGI) environment. Example value: `CGI/1.1` |
34+
| Environment variable | Purpose |
35+
|--------------------------------|-------------------------------------------------------------------------------------------------------------|
36+
| `HTTP_PROXY` or `http_proxy` | The proxy server used on HTTP requests. |
37+
| `HTTPS_PROXY` or `https_proxy` | The proxy server used on HTTPS requests. |
38+
| `ALL_PROXY` or `all_proxy` | The proxy server used for both HTTP and HTTPS requests. |
39+
| `NO_PROXY` or `no_proxy` | A comma-delimited list of hostnames to exclude from proxying. |
40+
| `GATEWAY_INTERFACE` | Indicator that the app is running in a Common Gateway Interface (CGI) environment. Example value: `CGI/1.1` |
4141

4242
Be aware of the following behaviors:
4343

44-
- Each environment variable in the preceding table, except `GATEWAY_INTERFACE`, can alternatively be defined as lowercase. For example, `http_proxy`. The lowercase form takes precedence over the uppercase form.
44+
- Each environment variable in the preceding table, except `GATEWAY_INTERFACE`, can alternatively be defined as lowercase. The lowercase form takes precedence over the uppercase form.
4545
- If both `http_proxy` and `GATEWAY_INTERFACE` are undefined, `HTTP_PROXY` is used.
4646
- `ALL_PROXY` is considered only when either an HTTP or an HTTPS proxy is undefined.
4747
- Protocol-specific environment variables take precedence over `ALL_PROXY`.

0 commit comments

Comments
 (0)