35 lines
799 B
Markdown
35 lines
799 B
Markdown
# Service STATUS
|
|
|
|
Équipe : neox + Cpm.
|
|
|
|
Date création : octobre 2022.
|
|
|
|
|
|
# Installation
|
|
|
|
Prodécure de référence : https://github.com/bderenzo/tinystatus#setup
|
|
|
|
Créer le dossier web cible :
|
|
```
|
|
mkdir -p /var/www/status.chalec.org/
|
|
chown www-data /var/www/status.chalec.org/
|
|
```
|
|
|
|
Récupérer l'application :
|
|
```
|
|
cd /srv/
|
|
git clone https://github.com/bderenzo/tinystatus.git
|
|
```
|
|
|
|
Paramétrer les éléments à surveiller, en éditant le fichier `checks.csv` :
|
|
```
|
|
http, 200, Chalec website, https://www.chalec.org/
|
|
http4, 200, Chalec website, https://www.chalec.org/
|
|
http6, 200, Chalec website, https://www.chalec.org/
|
|
```
|
|
|
|
Programmer un cron dans /etc/cron.d/tinystatus:
|
|
```
|
|
1 * * * * root /srv/tinystatus/tinystatus > /var/www/status.chalec.org/index.html
|
|
```
|