Now shipping w/ example config files properly setup so we can deploy
from git.
This commit is contained in:
parent
6aacd9f0a6
commit
e5b91d4f2b
9
node_app/config.js
Normal file
9
node_app/config.js
Normal file
@ -0,0 +1,9 @@
|
||||
var config = {
|
||||
connection_timeout : 5000,
|
||||
output_file : {
|
||||
path: '../web_service/js/tls-dashboard/',
|
||||
name: 'certificates.js'
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = config;
|
31
node_app/monitored_hosts.js
Normal file
31
node_app/monitored_hosts.js
Normal file
@ -0,0 +1,31 @@
|
||||
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;
|
Loading…
x
Reference in New Issue
Block a user