Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
commit
ca46dcf683
|
@ -0,0 +1 @@
|
||||||
|
Synapse will now reload TLS certificates from disk upon SIGHUP.
|
|
@ -95,7 +95,9 @@ class SynapseHomeServer(HomeServer):
|
||||||
site_tag = listener_config.get("tag", port)
|
site_tag = listener_config.get("tag", port)
|
||||||
|
|
||||||
if tls and config.no_tls:
|
if tls and config.no_tls:
|
||||||
return
|
raise ConfigError(
|
||||||
|
"Listener on port %i has TLS enabled, but no_tls is set" % (port,),
|
||||||
|
)
|
||||||
|
|
||||||
resources = {}
|
resources = {}
|
||||||
for res in listener_config["resources"]:
|
for res in listener_config["resources"]:
|
||||||
|
|
Loading…
Reference in New Issue