17 lines
401 B
Bash
Executable File
17 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script checks the status of the portfolio website
|
|
|
|
echo "Checking website status..."
|
|
curl -I https://boilerhaus.org
|
|
|
|
echo -e "\nChecking Gitea status..."
|
|
curl -I https://git.boilerhaus.org
|
|
|
|
echo -e "\nChecking Vaultwarden status..."
|
|
curl -I https://bw.boilerhaus.org
|
|
|
|
echo -e "\nChecking Nextcloud status..."
|
|
curl -I https://cloud.boilerhaus.org
|
|
|
|
echo -e "\nAll checks completed." |