#! /bin/bash
if curl -s --head  --request GET https://mysupportroom.com/ | grep -E "200 OK|HTTP/2 200" > /dev/null; then 
   echo "mysupportroom.com is UP"
exit 0
else
   echo "mysupportroom.com is DOWN"
exit 2
fi
