Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Monitor website failure with curl

curl -sSf --max-time 120 'https://websitetomonitor.url' --compressed || echo "do something with alarm on failure"

-s means silent -S show error -f Fail silently (no output at all) on server errors --max-time maximum time allowed for request

Cronjob every 2 minutes

*/2 * * * * /usr/local/bin/check_website.sh

Other Related Posts:

OpenWhisk server

Configuring the OpenWhisk server

Manually setting up Openwhisk and CouchDB on a fresh Ubuntu 16.04 server.

Based on the OpenWhisk Ansible README, which at the time of writing is missing some key steps - hence this new guide.

  1. Dependencies
sudo apt-get update
sudo apt-get upgrade
sudo ap...
21st Jan 2019