You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
), it means that when TLS certificate is updated (which can be relatively often with Let's Encrypt, once per several months), server needs to be restarted.
It would be better if certificate can be reloaded without server restart. Server can be signalled with SIGHUP/SIGUSR1/SIGUSR2, or something.
The text was updated successfully, but these errors were encountered:
Honestly, I didn't verify it myself, but that's what I could figure out from the code.
The TLS certificate is loaded here:
synapse/synapse/config/tls.py
Line 27 in 9bba6eb
And then dumped, among other places, here:
synapse/synapse/rest/key/v2/local_key_resource.py
Line 93 in 9bba6eb
Assuming config is read once (which also seems true -
synapse/synapse/app/homeserver.py
Line 270 in 88acb99
It would be better if certificate can be reloaded without server restart. Server can be signalled with SIGHUP/SIGUSR1/SIGUSR2, or something.
The text was updated successfully, but these errors were encountered: