http-server-status/Readme.md

34 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2021-09-20 10:51:51 +00:00
# HTTP Server Status
2021-11-29 06:13:19 +00:00
Status Page with your Server informations (HDD usage, ram usage, load, systemd) which returns a http Status 500 if a limit is reached. With this Service you can monitor your Server with a external tool like uptimerobot.com.
2021-09-20 10:51:51 +00:00
# Installation
2021-11-29 06:00:18 +00:00
2023-07-21 10:38:12 +00:00
## Dowanload URLs:
2023-07-21 10:38:29 +00:00
* Last Dev Build: `https://kekscloud-releases.s3.eu-central-003.backblazeb2.com/http-server-status/last.deb`
* Last Release Build: `https://kekscloud-releases.s3.eu-central-003.backblazeb2.com/http-server-status/stable.deb`
* Special Version: `https://kekscloud-releases.s3.eu-central-003.backblazeb2.com/http-server-status/http-server-status_1.0.7_linux_amd64.deb` (Bigger than 1.0.7)
2021-11-29 06:00:18 +00:00
2023-07-21 10:38:12 +00:00
To Install the Server Montiroing download the last .deb File from the Release page or the links above and save it as http-server-status.deb on your server. Than install the package with dpkg
2021-09-20 10:52:33 +00:00
```
dpkg -i http-server-status.deb
```
2021-09-20 10:51:51 +00:00
2021-11-29 06:00:18 +00:00
# Config
2021-09-20 10:51:51 +00:00
Copy the config sample and edit the config.
```bigquery
cp /etc/http-server-status/config.yml.sample /etc/http-server-status/config.yml
nano /etc/http-server-status/config.yml
```
2021-11-29 06:00:18 +00:00
# Run
2021-09-20 10:51:51 +00:00
After this start the server
```
sudo systemctl start http-server-status
2023-07-21 10:38:12 +00:00
```