-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtraefik.toml
More file actions
37 lines (30 loc) · 712 Bytes
/
Copy pathtraefik.toml
File metadata and controls
37 lines (30 loc) · 712 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
35
36
logLevel = "INFO"
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.dashboard]
address = ":8081"
[entryPoints.dashboard.auth]
[entryPoints.dashboard.auth.basic]
users = ["admin:$apr1$glhFgOfD$rWEOq/KV2bo76ptmUynDH."]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[api]
entrypoint="dashboard"
dashboard=true
[acme]
email = "your-email-here@email.com"
storage = "acme.json"
entryPoint = "https"
onHostRule = true
[acme.httpChallenge]
entryPoint = "http"
[docker]
domain = "yourdomain.com"
watch = true
network = "traefik_network"
swarmMode = false