This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
libressl_version=libressl-2.5.1 | |
libressl_archive=${libressl_version}.tar.gz | |
if [ -f ${libressl_archive} ] | |
then | |
: | |
else | |
wget -O ${libressl_archive} https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${libressl_archive} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
To use this synthetic, set the following Secure credentials: | |
NEW_RELIC_INSIGHTS_API_KEY - Your api key from the account settings. | |
NEW_RELIC_ACCOUNT_ID - Your account ID, also found in the account settings. | |
CERTS_TO_MONITOR - A list of hosts to check via https, separated by a comma and a space, for example: | |
host.example.com, foo.example.com | |
Create a new Synthetic monitor, copy the entire contents of this script to the monitor. | |
Set the monitor to run once a day from a single location. |