mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 23:34:56 -04:00
actually uphold the bind_host parameter. in theory should make ipv6 binds work like bind_host: 'fe80::1%lo0'
This commit is contained in:
parent
256fe08963
commit
c8032aec17
2 changed files with 13 additions and 3 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue