Compare commits

...

3 Commits

Author SHA1 Message Date
e5b91d4f2b Now shipping w/ example config files properly setup so we can deploy
from git.
2022-11-06 02:16:19 -06:00
6aacd9f0a6 Quick update 2022-11-06 02:15:32 -06:00
44fdadc9b2 Quick update 2022-11-06 02:14:39 -06:00
4 changed files with 46 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,3 +1,3 @@
node_app/config.js
node_app/monitored_hosts.js
#node_app/config.js
#node_app/monitored_hosts.js
web_service/js/tls-dashboard/certificates.js

9
node_app/config.js Normal file
View File

@ -0,0 +1,9 @@
var config = {
connection_timeout : 5000,
output_file : {
path: '../web_service/js/tls-dashboard/',
name: 'certificates.js'
}
};
module.exports = config;

View 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;

View File

@ -1,5 +1,9 @@
# Release notes
# Pre-2.0.1 (jrd)
** Nov 6, 2022**
* Reduce warning and critical thresholds to 30 and 14 days
# 2.0.0
**Aug 26, 2016**
* Added Typeahead search box to narrow the selection to a single hostnames