fix gitea

This commit is contained in:
thomas 2022-03-04 22:59:45 +01:00
parent faf953f718
commit 590bb561ad
4 changed files with 22 additions and 7 deletions

View file

@ -25,7 +25,7 @@ debmaker_chroot cache/joplin
- [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]())
- [element-web](#element-web) ([site](https://element.io/)) ([src](https://github.com/vector-im/element-web))
- [gitea](#gitea) ([site](https://gitea.io)) ([src](https://github.com/go-gitea/gitea/))
- [gotify](#gotify) ([site](https://gotify.net/)) ([src](https://github.com/gotify))
- [grocy](#grocy) ([site](https://grocy.info/)) ([src](https://github.com/grocy/grocy))
@ -81,6 +81,21 @@ a2ensite element-web
systemctl restart apache2
```
#### gitea
```bash
apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y gitea
#Edit /etc/gitea/app.ini
systemctl enable --now gitea
#configuration with http://<ip>:3000
```
#### gotify
```bash