-
Notifications
You must be signed in to change notification settings - Fork 1
/
traefik.toml
52 lines (40 loc) · 989 Bytes
/
traefik.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
debug = true
#debug = false
checkNewVersion = true
# defaultEntryPoints must be at the top
# because it should not be in any table below
defaultEntryPoints = ["http", "https", "ws", "wss"]
# Enable retry sending request if network error
[retry]
# Entrypoints, http and https
[entryPoints]
# http should be redirected to https
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
# https is the default
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
# Enable ACME (Let's Encrypt): automatic SSL
[acme]
email = "[email protected]"
storage = "/acme.json"
entryPoint = "https"
onDemand = false
OnHostRule = true
[acme.httpChallenge]
entryPoint = "http"
# Activate API and Dashboard
[api]
# entryPoint = "bar"
dashboard = true
#[web.auth.basic]
#usersFile = "/usersFile"
#address = "0.0.0.0:9090"
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "hub.tikal.io"
watch = true
exposedbydefault = false