mirror of
https://github.com/Kozea/Radicale.git
synced 2025-09-06 20:10:56 +00:00
Fix ssl protocol
This commit is contained in:
parent
d765544edd
commit
f377bd1356
3 changed files with 3 additions and 3 deletions
|
@ -100,7 +100,7 @@ class HTTPSServer(HTTPServer):
|
|||
keyfile=config.get("server", "key"),
|
||||
ssl_version=getattr(ssl, config.get("server", "protocol"),
|
||||
ssl.PROTOCOL_SSLv23),
|
||||
ciphers=config.get("server", "ciphers"))
|
||||
ciphers=config.get("server", "ciphers") or None)
|
||||
|
||||
self.server_bind()
|
||||
self.server_activate()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue