From c170949500962253e8f7f8f0147094c6164f21c4 Mon Sep 17 00:00:00 2001
From: Chris Shantz <shantz@gmail.com>
Date: Wed, 30 Jan 2019 22:19:51 -0500
Subject: [PATCH] Added a traefik folder containing acme.json and traefik.toml

---
 traefik/acme.json    |  0
 traefik/traefik.toml | 23 +++++++++++++++++++++++
 2 files changed, 23 insertions(+)
 create mode 100644 traefik/acme.json
 create mode 100644 traefik/traefik.toml

diff --git a/traefik/acme.json b/traefik/acme.json
new file mode 100644
index 0000000..e69de29
diff --git a/traefik/traefik.toml b/traefik/traefik.toml
new file mode 100644
index 0000000..ecab2d9
--- /dev/null
+++ b/traefik/traefik.toml
@@ -0,0 +1,23 @@
+debug = false
+
+logLevel = "ERROR"
+defaultEntryPoints = ["https","http"]
+
+[entryPoints]
+  [entryPoints.http]
+  address = ":80"
+    [entryPoints.http.redirect]
+    entryPoint = "https"
+  [entryPoints.https]
+  address = ":443"
+  [entryPoints.https.tls]
+
+[retry]
+
+[acme]
+email = "YOU@EXAMPLE.COM"
+storage = "acme.json"
+entryPoint = "https"
+OnHostRule = true
+[acme.httpChallenge]
+entryPoint = "http"
\ No newline at end of file
-- 
GitLab