Add flame

This commit is contained in:
thomas 2022-04-14 00:27:03 +02:00
parent 79cee1b8e1
commit 8817ddba0a
10 changed files with 100 additions and 0 deletions

View file

@ -46,6 +46,7 @@ To enter in temporary filesystem
- [adguardhome](#adguardhome) ([site](https://adguard.com/fr/adguard-home/overview.html)) ([src](https://github.com/AdguardTeam/AdguardHome))
- [authelia](#authelia) ([site](https://www.authelia.com/)) ([src](https://github.com/authelia/authelia))
- [element-web](#element-web) ([site](https://element.io/)) ([src](https://github.com/vector-im/element-web))
- [flame](#flame) ([site](https://github.com/pawelmalak/flame)) ([src](https://github.com/pawelmalak/flame))
- [gitea](#gitea) ([site](https://gitea.io)) ([src](https://github.com/go-gitea/gitea/))
- [glpi](#glpi) ([site](http://glpi-project.org/)) ([src](https://github.com/glpi-project/glpi))
- [gotify](#gotify) ([site](https://gotify.net/)) ([src](https://github.com/gotify))
@ -104,6 +105,19 @@ a2ensite element-web
systemctl restart apache2
```
#### flame
```bash
apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y flame
#Edit /etc/default/flame and change SECRET and PASSWORD
systemctl enable --now flame
```
#### gitea
```bash