Now shipping w/ example config files properly setup so we can deploy

from git.
This commit is contained in:
John R. Dennison 2022-11-06 02:16:19 -06:00
parent 6aacd9f0a6
commit e5b91d4f2b
2 changed files with 40 additions and 0 deletions

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;