-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtraefik.toml
More file actions
34 lines (31 loc) · 757 Bytes
/
traefik.toml
File metadata and controls
34 lines (31 loc) · 757 Bytes
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
defaultEntryPoints = ["https","http"]
[api]
entryPoint = "traefik"
dashboard = true
[api.statistics]
recentErrors = 10
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[entryPoints.traefik]
address = ":8080"
[entryPoints.traefik.auth.basic]
users = ["admin:$2y$10$DbCLmFMaKPwuE32N/RPpPuRMLBzEfsvIvHmMdjKryatPxG85wTlUO"]
[acme]
email = "postmaster@{{DOMAIN}}"
storage = "/etc/traefik/acme/acme.json"
entryPoint = "https"
onHostRule = true
onDemand = false
[acme.httpChallenge]
entryPoint = "http"
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "{{DOMAIN}}"
watch = true
exposedbydefault = false