1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Add option for CA certificate for validating clients

This can be used to secure TCP traffic between Radicale and a reverse proxy
This commit is contained in:
Unrud 2017-06-02 12:41:03 +02:00
parent 6bb0e9d956
commit 3af5809d71
4 changed files with 21 additions and 1 deletions

View file

@ -74,6 +74,11 @@ INITIAL_CONFIG = OrderedDict([
"help": "set private key file",
"aliases": ["-k", "--key"],
"type": str}),
("certificate_authority", {
"value": "",
"help": "set CA certificate for validating clients",
"aliases": ["--certificate-authority"],
"type": str}),
("protocol", {
"value": "PROTOCOL_TLSv1_2",
"help": "SSL protocol used",