diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2021-03-22 17:20:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 17:20:47 +0000 |
commit | 5b268997bdde04c905eed0a7c04e9e2352e35fba (patch) | |
tree | e85652cb1efae0e4dea453017c597d25f84c6b18 /changelog.d | |
parent | Include opencontainers labels in Docker image (#9612) (diff) | |
download | synapse-5b268997bdde04c905eed0a7c04e9e2352e35fba.tar.xz |
Allow providing credentials to HTTPS_PROXY (#9657)
Addresses https://github.com/matrix-org/synapse-dinsic/issues/70 This PR causes `ProxyAgent` to attempt to extract credentials from an `HTTPS_PROXY` env var. If credentials are found, a `Proxy-Authorization` header ([details](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Proxy-Authorization)) is sent to the proxy server to authenticate against it. The headers are *not* passed to the remote server. Also added some type hints.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/9657.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9657.feature b/changelog.d/9657.feature new file mode 100644 index 0000000000..c56a615a8b --- /dev/null +++ b/changelog.d/9657.feature @@ -0,0 +1 @@ +Add support for credentials for proxy authentication in the `HTTPS_PROXY` environment variable. |