diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-02 16:56:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-02 16:56:57 +0100 |
commit | 235f686da965cb08eea500ea11af8b591fe9d8c8 (patch) | |
tree | bd30bf23f208947be047b37d5dcde94a5ade9bae | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into release-v0.2.0 (diff) | |
download | synapse-235f686da965cb08eea500ea11af8b591fe9d8c8.tar.xz |
Update default endpoint port to match the default ports in the config
-rw-r--r-- | synapse/http/endpoint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/http/endpoint.py b/synapse/http/endpoint.py index a6ebe23567..6c1fdcb853 100644 --- a/synapse/http/endpoint.py +++ b/synapse/http/endpoint.py @@ -50,11 +50,11 @@ def matrix_endpoint(reactor, destination, ssl_context_factory=None, if ssl_context_factory is None: transport_endpoint = TCP4ClientEndpoint - default_port = 8080 + default_port = 8008 else: transport_endpoint = SSL4ClientEndpoint endpoint_kw_args.update(sslContextFactory=ssl_context_factory) - default_port = 443 + default_port = 8448 if port is None: return SRVClientEndpoint( |