debug = false
logLevel = "ERROR"

defaultEntryPoints = ["http", "https"]

[web]
address = ":8080"
  [web.auth.basic]
  users = ["~REDACTED~"]

[entryPoints]
  [entryPoints.http]
  address = ":80"
    [entryPoints.http.redirect]
      entryPoint = "https"
  [entryPoints.https]
  address = ":443"
    [entryPoints.https.tls]
      [[entryPoints.https.tls.certificates]]
      certFile = """
-----BEGIN CERTIFICATE-----
~REDACTED~
-----END CERTIFICATE-----
"""
      keyFile = """
-----BEGIN PRIVATE KEY-----
~REDACTED~
-----END PRIVATE KEY-----
"""

[retry]

[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "mydomain.com"
watch = true
exposedByDefault = false