Update monitored_hosts.js example for new build

This commit is contained in:
Craine Runton 2016-08-26 08:20:03 -06:00
parent 796abaadd3
commit 00a1b0bf66

View File

@ -1,12 +1,31 @@
var hosts = [ var hosts = [
'www.google.com', {
'www.twitter.com', hostname: 'www.google.com'
'sha256.badssl.com', },
'expired.badssl.com', {
'self-signed.badssl.com', hostname: 'www.runtondev.com'
'wrong.host.badssl.com', },
'incomplete-chain.badssl.com', {
'example.dev', hostname: 'sha256.badssl.com'
'vsaq.dev' },
{
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; module.exports = hosts;