Compare commits
3 Commits
0a4c9bf229
...
e5b91d4f2b
Author | SHA1 | Date | |
---|---|---|---|
e5b91d4f2b | |||
6aacd9f0a6 | |||
44fdadc9b2 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1,3 @@
|
|||||||
node_app/config.js
|
#node_app/config.js
|
||||||
node_app/monitored_hosts.js
|
#node_app/monitored_hosts.js
|
||||||
web_service/js/tls-dashboard/certificates.js
|
web_service/js/tls-dashboard/certificates.js
|
||||||
|
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;
|
@ -1,5 +1,9 @@
|
|||||||
# Release notes
|
# Release notes
|
||||||
|
|
||||||
|
# Pre-2.0.1 (jrd)
|
||||||
|
** Nov 6, 2022**
|
||||||
|
* Reduce warning and critical thresholds to 30 and 14 days
|
||||||
|
|
||||||
# 2.0.0
|
# 2.0.0
|
||||||
**Aug 26, 2016**
|
**Aug 26, 2016**
|
||||||
* Added Typeahead search box to narrow the selection to a single hostnames
|
* Added Typeahead search box to narrow the selection to a single hostnames
|
||||||
|
Loading…
x
Reference in New Issue
Block a user