debmaker/ressources/glpi/README.MD

25 lines
534 B
Plaintext
Raw Normal View History

2022-10-01 17:58:26 +02:00
#### 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>
```