1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Description: Adapt config to for sensible Debian defaults
* use snakeoil certificate
* use ACLs from file
* log to file
* fix example git tracking hook
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2020-02-23
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/config
+++ b/config
@@ -31,10 +31,10 @@
#ssl = False
# SSL certificate path
-#certificate = /etc/ssl/radicale.cert.pem
+certificate = /etc/ssl/certs/ssl-cert-snakeoil.pem
# SSL private key
-#key = /etc/ssl/radicale.key.pem
+key = /etc/ssl/private/ssl-cert-snakeoil.key
# CA certificate for validating clients. This can be used to secure
# TCP traffic between Radicale and a reverse proxy
@@ -173,10 +173,10 @@
# Rights backend
# Value: authenticated | owner_only | owner_write | from_file
-#type = owner_only
+type = from_file
# File for rights management from_file
-#file = /etc/radicale/rights
+file = /etc/radicale/rights
# Permit delete of a collection (global)
#permit_delete_collection = True
|