Merge pull request #3306 from simonpasquier/update-http-config-doc
docs: document the new proxy-related settings
This commit is contained in:
commit
fe287e504e
|
@ -557,6 +557,15 @@ oauth2:
|
||||||
|
|
||||||
# Optional proxy URL.
|
# Optional proxy URL.
|
||||||
[ proxy_url: <string> ]
|
[ proxy_url: <string> ]
|
||||||
|
# Comma-separated string that can contain IPs, CIDR notation, domain names
|
||||||
|
# that should be excluded from proxying. IP and domain names can
|
||||||
|
# contain port numbers.
|
||||||
|
[ no_proxy: <string> ]
|
||||||
|
# Use proxy URL indicated by environment variables (HTTP_PROXY, https_proxy, HTTPs_PROXY, https_proxy, and no_proxy)
|
||||||
|
[ proxy_from_environment: <boolean> | default: false ]
|
||||||
|
# Specifies headers to send to proxies during CONNECT requests.
|
||||||
|
[ proxy_connect_header:
|
||||||
|
[ <string>: [<secret>, ...] ] ]
|
||||||
|
|
||||||
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
# Configure whether HTTP requests follow HTTP 3xx redirects.
|
||||||
[ follow_redirects: <bool> | default = true ]
|
[ follow_redirects: <bool> | default = true ]
|
||||||
|
@ -597,6 +606,15 @@ tls_config:
|
||||||
|
|
||||||
# Optional proxy URL.
|
# Optional proxy URL.
|
||||||
[ proxy_url: <string> ]
|
[ proxy_url: <string> ]
|
||||||
|
# Comma-separated string that can contain IPs, CIDR notation, domain names
|
||||||
|
# that should be excluded from proxying. IP and domain names can
|
||||||
|
# contain port numbers.
|
||||||
|
[ no_proxy: <string> ]
|
||||||
|
# Use proxy URL indicated by environment variables (HTTP_PROXY, https_proxy, HTTPs_PROXY, https_proxy, and no_proxy)
|
||||||
|
[ proxy_from_environment: <boolean> | default: false ]
|
||||||
|
# Specifies headers to send to proxies during CONNECT requests.
|
||||||
|
[ proxy_connect_header:
|
||||||
|
[ <string>: [<secret>, ...] ] ]
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `<tls_config>`
|
#### `<tls_config>`
|
||||||
|
|
Loading…
Reference in New Issue