This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add documentation for forward proxy #10443
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
526eacb
Add documentation for forward proxy
dklimpel 71c1d1a
newsfile
dklimpel 569ac59
Apply suggestions from code review
dklimpel c724aee
update proxy/no proxy list
dklimpel e614189
Update forward_proxy.md
dklimpel 80a5c14
Apply suggestions from code review
dklimpel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Add documentation for configuration a forward proxy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Using a forward proxy with Synapse | ||
|
||
You can use Synapse with a forward or outbound proxy. An example of when | ||
this is necessary is in corporate environments behind a DMZ (demilitarized zone). | ||
Synapse supports routing outbound HTTP(S) requests via a proxy. Only HTTP(S) | ||
proxy is supported, not SOCKS proxy or anything else. | ||
|
||
## Configure | ||
|
||
The `http_proxy`, `https_proxy`, `no_proxy` environment variables are used to | ||
specify proxy settings. The environment variable is not case sensitive. | ||
- `http_proxy`: Proxy server to use for HTTP requests. | ||
- `https_proxy`: Proxy server to use for HTTPS requests. | ||
- `no_proxy`: Comma-separated list of hosts, IP addresses, or IP ranges in CIDR | ||
format which should not use the proxy. Synapse will directly connect to these hosts. | ||
|
||
The `http_proxy` and `https_proxy` environment variables have the form: `[scheme://][<username>:<password>@]<host>[:<port>]` | ||
- Supported schemes are `http://` and `https://`. The default scheme is `http://` | ||
for compatibility reasons; it is recommended to set a scheme. If scheme is set | ||
to `https://` the connection uses TLS between Synapse and the proxy. | ||
|
||
**NOTE**: Synapse validates the certificates. If the certificate is not | ||
valid, then the connection is dropped. | ||
- Default port if not given is `1080`. | ||
- Username and password are optional and will be used to authenticate against | ||
the proxy. | ||
|
||
**Examples** | ||
- HTTP_PROXY=http://USERNAME:PASSWORD@10.0.1.1:8080/ | ||
- HTTPS_PROXY=http://USERNAME:PASSWORD@proxy.example.com:8080/ | ||
- NO_PROXY=master.hostname.example.com,10.1.0.0/16,172.30.0.0/16 | ||
|
||
**NOTE**: | ||
Synapse does not apply the IP blacklist to connections through the proxy (since | ||
the DNS resolution is done by the proxy). It is expected that the proxy or firewall | ||
will apply blacklisting of IP addresses. | ||
|
||
## Connection types | ||
|
||
The proxy will be **used** for: | ||
|
||
- push | ||
- url previews | ||
- phone-home stats | ||
- recaptcha validation | ||
- CAS auth validation | ||
- OpenID Connect | ||
- Federation (checking public key revocation) | ||
|
||
It will **not be used** for: | ||
|
||
- Application Services | ||
- Identity servers | ||
- Outbound federation | ||
- In worker configurations | ||
- connections between workers | ||
- connections from workers to Redis | ||
- Fetching public keys of other servers | ||
- Downloading remote media | ||
|
||
## Troubleshooting | ||
|
||
If a proxy server is used with TLS (HTTPS) and no connections are established, | ||
it is most likely due to the proxy's certificates. To test this, the validation | ||
in Synapse can be deactivated. | ||
|
||
**NOTE**: This has an impact on security and is for testing purposes only! | ||
|
||
To deactivate the certificate validation, the following setting must be made in | ||
[homserver.yaml](../usage/configuration/homeserver_sample_config.md). | ||
|
||
```yaml | ||
use_insecure_ssl_client_just_for_testing_do_not_use: true | ||
``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this list from someplace we already have or did you look through the code?
This seems to match my memory, but curious if we should double check!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The list is from there #6239
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We updated this at some point, I think
synapse/docs/sample_config.yaml
Lines 205 to 206 in 016f085
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure if I understand you.
The documentation is from Dec 2020. There was a change in Jan 2021 #9084
Does the
config.sample
needs a info for do not block if a proxy is used?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My point was that the comment from #6239 didn't take into account the changes made in #9084 so I think the current list is wrong. (It says that we don't use it for federation and identity servers, but we do now).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This really is not trivial.
I took a look in code, now:
synapse/synapse/server.py
Line 408 in bf72d10
synapse/synapse/server.py
Line 415 in bf72d10
class PreviewUrlResource
synapse/synapse/server.py
Line 428 in bf72d10
synapse/synapse/server.py
Line 401 in bf72d10
class IdentityHandler
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I'm being an idiot -- I was confusing the proxy with the IP blacklisting code, which of course aren't the same. 😢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. This may happen.
But I am confused about the blacklist.
How can Synapse blacklist when the proxies does the DNS resolution? Synapse does not know the IP.
In this PR #10129 a warning should be added. But there is a function in code like:
synapse/synapse/server.py
Lines 415 to 418 in bf72d10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't, it only applies the blacklist if a proxy isn't being used, so
get_proxied_blacklisted_http_client
does the following:Pretty much anything that uses
get_proxied_blacklisted_http_client
orget_proxied_http_client
uses the proxy.Frankly we should probably change anywhere that manually creates
SimpleHttpClient
to call one of the above (that's part of fixing "make proxies work everywhere IMO).