going to be accessible by the uid running radicale - add a readme, showing people how to setup auth/crypto with/ok ian@
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
$OpenBSD: patch-config,v 1.3 2011/04/17 14:54:47 sthen Exp $
|
|
--- config.orig Sat Aug 7 13:22:58 2010
|
|
+++ config Fri Apr 15 17:42:39 2011
|
|
@@ -15,9 +15,9 @@ daemon = False
|
|
# SSL flag, enable HTTPS protocol
|
|
ssl = False
|
|
# SSL certificate path (if needed)
|
|
-certificate = /etc/apache2/ssl/server.crt
|
|
+certificate = ${SYSCONFDIR}/radicale/server.crt
|
|
# SSL private key (if needed)
|
|
-key = /etc/apache2/ssl/server.key
|
|
+key = ${SYSCONFDIR}/radicale/private/server.key
|
|
|
|
[encoding]
|
|
# Encoding for responding requests
|
|
@@ -32,14 +32,15 @@ type = fake
|
|
# Personal calendars only available for logged in users (if needed)
|
|
personal = False
|
|
# Htpasswd filename (if needed)
|
|
-filename = /etc/radicale/users
|
|
+filename = ${SYSCONFDIR}/radicale/users
|
|
# Htpasswd encryption method (if needed)
|
|
# Value: plain | sha1 | crypt
|
|
-encryption = crypt
|
|
+# (For sha1, use htpasswd -s ${SYSCONFDIR}/radicale/users username)
|
|
+encryption = sha1
|
|
|
|
[storage]
|
|
# Folder for storing local calendars,
|
|
# created if not present
|
|
-folder = ~/.config/radicale/calendars
|
|
+folder = /var/db/radicale/calendars
|
|
|
|
# vim:ft=cfg
|