From e13dee422177458605391ad33aaf599f8684a92f Mon Sep 17 00:00:00 2001 From: Nigel Tatschner Date: Mon, 22 May 2023 12:12:36 +0100 Subject: [PATCH] Update cloudflare-companion Added Verify=False to request to get rid of weird issue where i'm getting SSL validation on local treafik host --- install/usr/sbin/cloudflare-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/usr/sbin/cloudflare-companion b/install/usr/sbin/cloudflare-companion index eb2df18..4ebd4ac 100755 --- a/install/usr/sbin/cloudflare-companion +++ b/install/usr/sbin/cloudflare-companion @@ -351,7 +351,7 @@ def check_traefik(included_hosts, excluded_hosts): mappings = {} logger.debug("Called check_traefik") if TRAEFIK_VERSION == "2": - r = requests.get("{}/api/http/routers".format(TRAEFIK_POLL_URL)) + r = requests.get("{}/api/http/routers".format(TRAEFIK_POLL_URL), Verify=False) if r.ok: for router in r.json(): if "status" in router and router["status"] == "enabled":