32 lines
445 B
JavaScript
32 lines
445 B
JavaScript
var hosts = [
|
|
{
|
|
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;
|