if [ -z $(curl -s --head  --request GET https://prosperity.com | grep "200 OK" > /dev/null| grep 200) ]; then
echo "prosperity.com is UP"
exit 0
else
echo "prosperity.com is DOWN"
exit 2
fi
