14 lines
378 B
Markdown
14 lines
378 B
Markdown
# Radicale
|
|
|
|
## Creating an account
|
|
|
|
Currently to create a radicale account you will need to generate and hash a password with `htpasswd` and `bcrypt`.
|
|
|
|
You can generate your password using a password manager or `openssl` with at least 32 characters.
|
|
|
|
```sh
|
|
htpasswd -Bn <user>@distrust.co
|
|
```
|
|
|
|
You will then need to add the output to users.enc.yaml which is encrypted with SOPS
|