This repository was archived by the owner on Nov 2, 2024. It is now read-only.
setting up radicale (carddav / caldav) with alpine 3.18 template #2184
tomtom1964bo
started this conversation in
Ideas
Replies: 3 comments 5 replies
-
Muchas gracias !!! estaba buscando como instalar radicale en un lxc. |
Beta Was this translation helpful? Give feedback.
4 replies
-
In my case radicale didn't work with this setup and gave a 500 Error. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Thanks, works like a charm! How do you remove a user, and how to change password for a user? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, if anyone is interested in a lightweight carddav server. Here are my steps for installing radicale on alpine 3.18.
For me it worked this way.
1a - create new CT with alpine3.18 - Template (Disk 0,25GB , Ram 128MB, Swap 128MB)
1 - update and upgrade after install
apk update && apk upgrade
2 - Install radicale, nano and apache2-utils
apk add radicale nano apache2-utils
3 - Security: The storage should not be readable by others. (Run chmod -R o= /var/lib/radicale/collections as root.)
chmod -R o= /var/lib/radicale/collections
4 - Get your ip address
ip addr
5 - Edit /etc/radicale/config for setting ip address and authentification method
nano /etc/radicale/config
6 - Save the file
7 - Create user and password
htpasswd -B -c /etc/radicale/users user1
8 - Start service
rc-service radicale start
9 - Add service to default runlevel
rc-update add radicale
10 - webbrowser login
192.168.1.196:5232
Beta Was this translation helpful? Give feedback.
All reactions