README MIGRATION
This commit is contained in:
parent
6495c0d2ec
commit
a92a6a8738
21 changed files with 454 additions and 298 deletions
26
ressources/element-web/README.MD
Normal file
26
ressources/element-web/README.MD
Normal file
|
@ -0,0 +1,26 @@
|
|||
#### element-web
|
||||
|
||||
##### Information
|
||||
Site : https://element.io/
|
||||
|
||||
Source : https://github.com/vector-im/element-web
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install element-web
|
||||
|
||||
# sample configuration for apache2
|
||||
|
||||
cp /usr/share/doc/element-web/apache2-element-web.conf /etc/apache2/sites-available/element-web.conf
|
||||
a2ensite element-web
|
||||
|
||||
# edit /etc/apache2/sites-available/element-web.conf
|
||||
# edit /etc/element-web/config.json
|
||||
|
||||
systemctl restart apache2
|
||||
```
|
||||
|
21
ressources/flame/README.MD
Normal file
21
ressources/flame/README.MD
Normal file
|
@ -0,0 +1,21 @@
|
|||
#### flame
|
||||
|
||||
##### Information
|
||||
Site : https://github.com/pawelmalak/flame
|
||||
|
||||
Source : https://github.com/pawelmalak/flame
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
wget -qO - https://deb.nodesource.com/setup_16.x | bash
|
||||
apt-get update
|
||||
apt-get install -y flame
|
||||
|
||||
#Edit /etc/default/flame and change SECRET and PASSWORD
|
||||
|
||||
systemctl enable --now flame
|
||||
```
|
||||
|
20
ressources/gitea/README.MD
Normal file
20
ressources/gitea/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### gitea
|
||||
|
||||
##### Information
|
||||
Site : https://gitea.io
|
||||
|
||||
Source : https://github.com/go-gitea/gitea/
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y gitea
|
||||
|
||||
systemctl enable --now gitea
|
||||
|
||||
#configuration with http://<ip>:3000
|
||||
```
|
||||
|
24
ressources/glpi/README.MD
Normal file
24
ressources/glpi/README.MD
Normal file
|
@ -0,0 +1,24 @@
|
|||
#### glpi
|
||||
|
||||
##### Information
|
||||
Site : http://glpi-project.org/
|
||||
|
||||
Source : https://github.com/glpi-project/glpi
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install glpi libapache2-mod-php apache2 -y
|
||||
|
||||
gzip -dc /usr/share/doc/glpi/apache2-glpi.conf.gz > /etc/apache2/sites-available/glpi.conf
|
||||
|
||||
#edité le fichier de configuration apache
|
||||
nano /etc/apache2/sites-available/glpi.conf
|
||||
a2ensite glpi
|
||||
systemctl reload apache2
|
||||
|
||||
#configuration with http://<ip>
|
||||
```
|
19
ressources/gotify/README.MD
Normal file
19
ressources/gotify/README.MD
Normal file
|
@ -0,0 +1,19 @@
|
|||
#### gotify
|
||||
|
||||
##### Information
|
||||
Site : https://gotify.net/
|
||||
|
||||
Source : https://github.com/gotify
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y gotify-server
|
||||
|
||||
#Edit /etc/gotify/config.yml
|
||||
|
||||
systemctl enable --now gotify
|
||||
```
|
25
ressources/grocy/README.MD
Normal file
25
ressources/grocy/README.MD
Normal file
|
@ -0,0 +1,25 @@
|
|||
#### grocy
|
||||
|
||||
##### Information
|
||||
Site : https://grocy.info/
|
||||
|
||||
Source : https://github.com/grocy/grocy
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y 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
|
||||
```
|
15
ressources/joplin-desktop/README.MD
Normal file
15
ressources/joplin-desktop/README.MD
Normal file
|
@ -0,0 +1,15 @@
|
|||
#### joplin
|
||||
|
||||
##### Information
|
||||
Site : https://joplinapp.org/
|
||||
|
||||
Source : https://github.com/laurent22/joplin
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y joplin
|
||||
```
|
20
ressources/joplin-server/README.MD
Normal file
20
ressources/joplin-server/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### joplin-server
|
||||
|
||||
##### Information
|
||||
Site : https://joplinapp.org/
|
||||
|
||||
Source : https://github.com/laurent22/joplin
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
wget -qO - https://deb.nodesource.com/setup_16.x | bash
|
||||
apt-get update
|
||||
apt-get install -y joplin-server
|
||||
|
||||
#Edit /etc/default/joplin-server
|
||||
|
||||
systemctl enable --now joplin-server
|
||||
```
|
19
ressources/mautrix-syncproxy/README.MD
Normal file
19
ressources/mautrix-syncproxy/README.MD
Normal file
|
@ -0,0 +1,19 @@
|
|||
#### mautrix-syncproxy
|
||||
|
||||
##### Information
|
||||
Site : https://docs.mau.fi/bridges/go/imessage/android/setup.html
|
||||
|
||||
Source : https://github.com/mautrix/syncproxy
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y mautrix-syncproxy mautrix-wsproxy
|
||||
|
||||
#Edit /etc/mautrix-wsproxy.yaml and /etc/default/mautrix-syncproxy
|
||||
|
||||
systemctl enable --now mautrix-wsproxy mautrix-syncproxy
|
||||
```
|
20
ressources/mautrix-whatsapp/README.MD
Normal file
20
ressources/mautrix-whatsapp/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### mautrix-whatsapp
|
||||
|
||||
##### Information
|
||||
Site : https://docs.mau.fi/bridges/go/whatsapp/index.html
|
||||
|
||||
Source : https://github.com/mautrix/whatsapp
|
||||
|
||||
##### Install
|
||||
|
||||
```
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y mautrix-whatsapp
|
||||
|
||||
#see https://docs.mau.fi/bridges/go/whatsapp/setup/index.html#configuring-and-running
|
||||
|
||||
systemctl enable --now mautrix-whatsapp
|
||||
```
|
||||
|
19
ressources/mautrix-wsproxy/README.MD
Normal file
19
ressources/mautrix-wsproxy/README.MD
Normal file
|
@ -0,0 +1,19 @@
|
|||
#### mautrix-wsproxy
|
||||
|
||||
##### Information
|
||||
Site : https://docs.mau.fi/bridges/go/imessage/android/setup.html
|
||||
|
||||
Source : https://github.com/mautrix/wsproxy
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y mautrix-syncproxy mautrix-wsproxy
|
||||
|
||||
#Edit /etc/mautrix-wsproxy.yaml and /etc/default/mautrix-syncproxy
|
||||
|
||||
systemctl enable --now mautrix-wsproxy mautrix-syncproxy
|
||||
```
|
20
ressources/metabase/README.MD
Normal file
20
ressources/metabase/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### metabase
|
||||
|
||||
##### Information
|
||||
Site : https://www.metabase.com/
|
||||
|
||||
Source : https://github.com/metabase/metabase
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y metabase openjdk-17-jre
|
||||
|
||||
systemctl enable --now metabase
|
||||
|
||||
#configuration with http://<ip>:3000
|
||||
```
|
||||
|
25
ressources/roundcubemail/README.MD
Normal file
25
ressources/roundcubemail/README.MD
Normal file
|
@ -0,0 +1,25 @@
|
|||
#### roundcubemail
|
||||
|
||||
##### Information
|
||||
Site : https://roundcube.net/
|
||||
|
||||
Source : https://github.com/roundcube/roundcubemail
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install roundcubemail
|
||||
|
||||
# sample configuration for apache2 + vhost
|
||||
|
||||
cp /usr/share/doc/roundcubemail/apache2-roundcubemail.conf /etc/apache2/sites-available/roundcubemail.conf
|
||||
a2ensite roundcubemail
|
||||
|
||||
# edit /etc/apache2/sites-available/roundcubemail.conf
|
||||
# edit /etc/roundcubemail/config.inc.php
|
||||
|
||||
systemctl restart apache2
|
||||
```
|
25
ressources/rss-bridge/README.MD
Normal file
25
ressources/rss-bridge/README.MD
Normal file
|
@ -0,0 +1,25 @@
|
|||
#### rss-bridge
|
||||
|
||||
##### Information
|
||||
Site : https://github.com/rss-bridge/rss-bridge
|
||||
|
||||
Source : https://github.com/RSS-Bridge/rss-bridge
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install rss-bridge
|
||||
|
||||
# sample configuration for apache2
|
||||
|
||||
apt install libapache2-mod-php
|
||||
cp /usr/share/doc/rss-bridge/apache2-rss-bridge.conf /etc/apache2/site-available/rss-bridge.conf
|
||||
a2ensite rss-bridge
|
||||
|
||||
# edit /etc/apache2/site-available/rss-bridge.conf
|
||||
|
||||
systemctl restart apache2
|
||||
```
|
24
ressources/rustdesk-server/README.MD
Normal file
24
ressources/rustdesk-server/README.MD
Normal file
|
@ -0,0 +1,24 @@
|
|||
#### rustdesk-server
|
||||
|
||||
##### Information
|
||||
Site : https://rustdesk.com/
|
||||
|
||||
Source : https://github.com/rustdesk/rustdesk-server
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
|
||||
#On Rendez-vous server
|
||||
apt-get install -y rustdesk-server-hbbs
|
||||
# edit /etc/default/hbbs
|
||||
systemctl enable --now hbbs
|
||||
|
||||
#On Relay server
|
||||
apt-get install -y rustdesk-server-hbbr
|
||||
# edit /etc/default/hbbr
|
||||
systemctl enable --now hbbr
|
||||
```
|
27
ressources/tt-rss/README.MD
Normal file
27
ressources/tt-rss/README.MD
Normal file
|
@ -0,0 +1,27 @@
|
|||
#### tt-rss
|
||||
|
||||
##### Information
|
||||
Site : https://tt-rss.org/
|
||||
|
||||
Source : https://git.tt-rss.org/fox/tt-rss
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y tt-rss
|
||||
|
||||
#Edit /etc/tt-rss/config.php
|
||||
systemctl enable --now tt-rss
|
||||
|
||||
# sample configuration for apache2 + php fpm
|
||||
apt install apache2 php-fpm
|
||||
a2enmod proxy_fcgi setenvif
|
||||
a2enconf php7.4-fpm
|
||||
cp /usr/share/doc/tt-rss/apache2-tt-rss.conf /etc/apache2/sites-available/tt-rss.conf
|
||||
#edit /etc/apache2/sites-available/tt-rss.conf
|
||||
a2ensite tt-rss
|
||||
systemctl restart apache2
|
||||
```
|
20
ressources/vaultwarden-web/README.MD
Normal file
20
ressources/vaultwarden-web/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### vaultwarden-web
|
||||
|
||||
##### Information
|
||||
Site : https://github.com/dani-garcia/vaultwarden
|
||||
|
||||
Source : https://github.com/dani-garcia/vaultwarden
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install vaultwarden vaultwarden-web
|
||||
|
||||
#Edit /etc/default/vaultwarden
|
||||
|
||||
systemctl enable --now vaultwarden
|
||||
```
|
||||
|
20
ressources/vaultwarden/README.MD
Normal file
20
ressources/vaultwarden/README.MD
Normal file
|
@ -0,0 +1,20 @@
|
|||
#### vaultwarden
|
||||
|
||||
##### Information
|
||||
Site : https://github.com/dani-garcia/vaultwarden
|
||||
|
||||
Source : https://github.com/dani-garcia/vaultwarden
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install vaultwarden vaultwarden-web
|
||||
|
||||
#Edit /etc/default/vaultwarden
|
||||
|
||||
systemctl enable --now vaultwarden
|
||||
```
|
||||
|
25
ressources/wallabag/README.MD
Normal file
25
ressources/wallabag/README.MD
Normal file
|
@ -0,0 +1,25 @@
|
|||
#### wallabag
|
||||
|
||||
##### Information
|
||||
Site : https://www.wallabag.it/
|
||||
|
||||
Source : https://github.com/wallabag/wallabag
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install wallabag
|
||||
|
||||
# sample configuration for apache2
|
||||
|
||||
apt install libapache2-mod-php
|
||||
cp /usr/share/doc/wallabag/apache2-wallabag.conf /etc/apache2/site-available/wallabag.conf
|
||||
a2ensite wallabag
|
||||
|
||||
# edit /etc/apache2/site-available/wallabag.conf
|
||||
|
||||
systemctl restart apache2
|
||||
```
|
19
ressources/zigbee2mqtt/README.MD
Normal file
19
ressources/zigbee2mqtt/README.MD
Normal file
|
@ -0,0 +1,19 @@
|
|||
#### zigbee2mqtt
|
||||
|
||||
##### Information
|
||||
Site : https://www.zigbee2mqtt.io/
|
||||
|
||||
Source : https://github.com/Koenkk/zigbee2mqtt
|
||||
|
||||
##### Install
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y zigbee2mqtt
|
||||
|
||||
#Edit /etc/zigbee2mqtt/configuration.yaml
|
||||
|
||||
systemctl enable --now zigbee2mqtt
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue