mirror of
https://mau.dev/maunium/synapse.git
synced 2025-01-19 00:41:55 +01:00
Merge pull request #4524 from matrix-org/erikj/fix_no_tls
Fix bug where synapse fails to start if no_tls set
This commit is contained in:
commit
43c6fca960
2 changed files with 4 additions and 1 deletions
1
changelog.d/4524.feature
Normal file
1
changelog.d/4524.feature
Normal file
|
@ -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)
|
||||
|
||||
if tls and config.no_tls:
|
||||
return
|
||||
raise ConfigError(
|
||||
"Listener on port %i has TLS enabled, but no_tls is set" % (port,),
|
||||
)
|
||||
|
||||
resources = {}
|
||||
for res in listener_config["resources"]:
|
||||
|
|
Loading…
Add table
Reference in a new issue