http-server-status/Readme.md

35 lines
869 B
Markdown
Raw 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
## Fast
```
curl https://git.keks.cloud/kekskurse/http-server-status/raw/branch/main/install.sh | sh
```
## Manual
2021-09-20 10:52:33 +00:00
To Install the Server Montiroing download the last .deb File from the Release page and save it as http-server-status.deb on your server. Than install the package with dpkg
```
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 09:59:05 +00:00
```
.