From 14094ed87cb2490c28eaf28937208987fa978296 Mon Sep 17 00:00:00 2001 From: Mario Marhuenda Date: Wed, 25 May 2022 12:46:35 +0200 Subject: Usind md5 is insecure. Bcrypt is better --- radicale.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'radicale.html') diff --git a/radicale.html b/radicale.html index 029de7c..85bbf14 100644 --- a/radicale.html +++ b/radicale.html @@ -26,14 +26,14 @@ hosts = 0.0.0.0:5232, [::]:5232 [auth] type = htpasswd htpasswd_filename = /etc/radicale/users -htpasswd_encryption = md5 +htpasswd_encryption = bcrypt [storage] filesystem_folder = /var/lib/radicale/collections

As you can see under [auth] we use htpasswd to manage the users. Execute the following command to add a new user to Radicale.

htpasswd -c /etc/radicale/users username
-

As Radicale stands now it is fully functional and after starting it by executing its binary, can be accessed under example.org:5232. But there are two additional things we can do to make using and managing Radicale way easier.

+

As Radicale stands now it is fully functional and after starting it by executing its binary, can be accessed under example.org:5232. But there are two additional things we can do to make using and managing Radicale way easier.

Setting up a Nginx reverse proxy

Because the URL of your Radicale server is an URL you will have to remember and enter it on any device you want to use your calendar on it is advised to set up a reverse proxy.

server {
-- 
cgit v1.2.3