Comment on First Time Self Hoster- Need help with Radicale
BlackSnack@lemmy.zip 1 month agoI made an error in my original post. Please see the edit I made.
But I think I’m understanding a bit! I need to literally create a file named “/etc/radicale/config”. Then after that I need to copy/paste the configuration file/command line into said folder. Once I do that then I should be able to move onto authentication and then addresses.
darkan15@lemmy.world 1 month ago
Yes, you will need to create that
configfile, on one of those paths so you then continue with any of the configuration steps on the documentation, you can do thatAddressesstep first.A second file for the users is needed as well, that I would guess the best location would be
/etc/radicale/usersFor the Authentication part, you will need to install the
apache2-utilspackage withsudo apt-get install apache2-utilsto use thehtpasswdcommand to add usersSo the command to add users would be
htpasswd -5 -c /etc/radicale/users user1and instead of user1, your username.And what you need to add to the config file for it to read your user file would be:
Replacing the path with the one where you created your users file.