Add tlsTargets, move the cert check to check against those.

master
jowj 4 years ago
parent aba510a6df
commit c4dd4aa653

@ -71,7 +71,7 @@ while is_on:
json_string = json.dumps(datastore)
# get SSL certs on http targets
cert_info = monitor_TlsExpiry(arkevars.httpTargets)
cert_info = monitor_TlsExpiry(arkevars.tlsTargets)
cert_json = json.dumps(cert_info)
# get whois info on domain targets

@ -5,8 +5,10 @@ httpTargets = (
"https://matrix.awful.club"
)
containerTargets = (
"slack.awful.club"
tlsTargets = (
"https://my.awful.club",
"https://me.jowj.net",
"https://matrix.awful.club"
)
domains_to_check = (

Loading…
Cancel
Save