Skip to content

Commit

Permalink
Update monitored_hosts.js example for new build
Browse files Browse the repository at this point in the history
  • Loading branch information
Craine Runton committed Aug 26, 2016
1 parent 796abaa commit 00a1b0b
Showing 1 changed file with 28 additions and 9 deletions.
37 changes: 28 additions & 9 deletions node_app/example_monitored_hosts.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
var hosts = [
'www.google.com',
'www.twitter.com',
'sha256.badssl.com',
'expired.badssl.com',
'self-signed.badssl.com',
'wrong.host.badssl.com',
'incomplete-chain.badssl.com',
'example.dev',
'vsaq.dev'
{
hostname: 'www.google.com'
},
{
hostname: 'www.runtondev.com'
},
{
hostname: 'sha256.badssl.com'
},
{
hostname: 'expired.badssl.com'
},
{
hostname: 'self-signed.badssl.com'
},
{
hostname: 'wrong.host.badssl.com'
},
{
hostname: 'incomplete-chain.badssl.com'
},
{
hostname: 'example.dev',
port: 8080
},
{
hostname: 'vsaq.dev'
}
];
module.exports = hosts;

0 comments on commit 00a1b0b

Please sign in to comment.