1
0
Fork 0
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:
Jean-Marc Martins 2013-12-13 15:17:30 +01:00
parent d765544edd
commit f377bd1356
3 changed files with 3 additions and 3 deletions

View file

@ -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()