25 lines
534 B
Plaintext
25 lines
534 B
Plaintext
|
#### 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>
|
||
|
```
|