33 lines
No EOL
866 B
Markdown
33 lines
No EOL
866 B
Markdown
# HTTP Server Status
|
|
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.
|
|
|
|
|
|
# Installation
|
|
|
|
## Fast
|
|
```
|
|
curl https://git.keks.cloud/kekskurse/http-server-status/raw/branch/main/install.sh | sh
|
|
```
|
|
|
|
## Manual
|
|
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
|
|
```
|
|
|
|
# Config
|
|
|
|
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
|
|
```
|
|
|
|
# Run
|
|
|
|
After this start the server
|
|
|
|
```
|
|
sudo systemctl start http-server-status
|
|
``` |