summary refs log tree commit diff
path: root/synapse/app
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/app')
-rwxr-xr-xsynapse/app/homeserver.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index aa7c722efc..15c454af76 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -225,13 +225,18 @@ class SynapseHomeServer(HomeServer):
 
         if not config.no_tls and config.bind_port is not None:
             reactor.listenSSL(
-                config.bind_port, Site(self.root_resource), self.tls_context_factory
+                config.bind_port,
+                Site(self.root_resource),
+                self.tls_context_factory,
+                interface=config.bind_host
             )
             logger.info("Synapse now listening on port %d", config.bind_port)
 
         if config.unsecure_port is not None:
             reactor.listenTCP(
-                config.unsecure_port, Site(self.root_resource)
+                config.unsecure_port,
+                Site(self.root_resource),
+                interface=config.bind_host
             )
             logger.info("Synapse now listening on port %d", config.unsecure_port)