From 96bf3ee571c6f7645c6f1e338add52d10b45c32e Mon Sep 17 00:00:00 2001 From: olli Date: Mon, 17 Jul 2023 17:50:27 +0200 Subject: [PATCH] ignore non accessable hosts --- traefik.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/traefik.yml b/traefik.yml index 5a0431e..7ee0a77 100644 --- a/traefik.yml +++ b/traefik.yml @@ -199,6 +199,7 @@ cat $g_tmp/hosts | cut -d '`' -f2 | sort -u | while read host do host ${host} >/dev/null 2>&1 || continue + curl -s https://${host} >/dev/null 2>&1 || continue until ssllabs-scan --quiet ${host} | jq '.[] | .endpoints | .[] | .grade' >${g_tmp}/ssllabs-scan-result 2>&1 do sleep 60