Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sailing:radicale [2024/01/11 13:14] – willy | sailing:radicale [2024/02/22 09:47] (current) – removed willy | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Radicale ====== | ||
- | |||
- | [[https:// | ||
- | |||
- | Add user: | ||
- | <code bash> | ||
- | > useradd -d / | ||
- | </ | ||
- | |||
- | Create data folder: | ||
- | <code bash> | ||
- | > mkdir / | ||
- | > chown radicale: | ||
- | </ | ||
- | |||
- | enable pip (see deemon) | ||
- | |||
- | run as user radicale: | ||
- | <code bash> | ||
- | > pip install --upgrade radicale | ||
- | </ | ||
- | |||
- | then start it: | ||
- | <code bash> | ||
- | > radicale --storage-filesystem-folder=/ | ||
- | </ | ||
- | |||
- | Setup nginx reverse proxy: | ||
- | <file txt radicale.conf> | ||
- | location /radicale/ { # The trailing / is important! | ||
- | proxy_pass | ||
- | proxy_set_header | ||
- | proxy_set_header | ||
- | proxy_set_header | ||
- | proxy_pass_header Authorization; | ||
- | proxy_set_header | ||
- | } | ||
- | </ | ||
- | |||
- | and restart nginx. | ||
- | |||
- | Now go with browser to http:// | ||
- | |||