first release grocy

remove standardnotes-web
This commit is contained in:
thomas 2022-02-23 00:07:32 +01:00
parent 297a9d686c
commit 30fc01c577
11 changed files with 24 additions and 98 deletions

View file

@ -16,6 +16,7 @@ debmake_runAllStep
- [element-web](#element-web)
- [gotify](#gotify)
- [grocy](#grocy)
- [joplin-server](#joplin-server)
- [rss-bridge](#rss-bridge)
- [vaultwarden and vaultwarden-web](#vaultwarden-and-vaultwarden-web)
@ -52,6 +53,26 @@ apt-get install -y gotify-server
systemctl enable --now gotify
```
#### grocy
```bash
apt install -y python wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y grocy
#Edit /etc/grocy/config.php
# sample configuration for apache2 + php fpm
apt install apache2 php-fpm
a2enmod proxy_fcgi setenvif rewrite
a2enconf php8.1-fpm
cp /usr/share/doc/grocy/apache2-grocy.conf /etc/apache2/sites-available/grocy.conf
a2ensite grocy
systemctl restart apache2
```
#### joplin-server
```bash