From 7e2063571d210913c224d87fd37cef5b8961fbb6 Mon Sep 17 00:00:00 2001
From: Anders Larsson <anders.larsson@icm.uu.se>
Date: Mon, 28 May 2018 08:32:49 +0200
Subject: [PATCH] Allow for https backend traefic within cluster without
 certificates

---
 playbooks/roles/traefik/files/traefik.toml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/playbooks/roles/traefik/files/traefik.toml b/playbooks/roles/traefik/files/traefik.toml
index 451878ad..f2d1e5ae 100644
--- a/playbooks/roles/traefik/files/traefik.toml
+++ b/playbooks/roles/traefik/files/traefik.toml
@@ -2,6 +2,9 @@
 # Defaults
 ################################################################
 defaultEntryPoints = ["http","https"]
+# InsecureSkipVerify : If set to true invalid SSL certificates are accepted for backends.
+# Note: This disables detection of man-in-the-middle attacks so should only be used on secure backend networks.
+insecureSkipVerify = true
 ################################################################
 # Web configuration backend
 ################################################################