README: added install instructions

This commit is contained in:
Ludwig Behm 2023-10-19 23:47:55 +02:00
parent 8e9e6d37fc
commit b09a5b9aa8
No known key found for this signature in database
GPG key ID: D344835D63B89384

View file

@ -13,3 +13,16 @@ ist. Debian stellt die Bibliothe in dem Paket php-sabre-vobject bereit. Nach
der Installation und Konfiguration des Websevers inklusive PHP wird das Repo
in das Dokumentroot des Webservers kopiert.
### Installationsschritte
```bash
# install calendar event exporter
sudo install -o0 -g0 -m444 etc/systemd/calendar-events-exporter.* /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now calendar-events-exporter.timer
# install nginx config
sudo install -o0 -g0 -m444 etc/nginx/kraut.space.conf /etc/nginx/sites-available/
sudo ln -s ../sites-available/kraut.space.conf /etc/nginx/sites-enabled/
sudo systemctl reload nginx
```