summary refs log tree commit diff
path: root/changelog.d/9657.feature (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow providing credentials to HTTPS_PROXY (#9657)Andrew Morgan2021-03-221-0/+1
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.