#! /bin/bash
if curl -s --head  --request GET http://raisethemreadyquiz.com/ | grep "200 OK" > /dev/null; then 
   echo "raisethemreadyquiz.com is UP"
exit 0
else
   echo "raisethemreadyquiz.com is DOWN!!!!. Please check the nginx status of the lumi.securelinuxservers.com"
exit 2
fi
