-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraefik.toml
52 lines (43 loc) · 960 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
[global]
checkNewVersion = false
sendAnonymousUsage = true
[serversTransport]
insecureSkipVerify = true
maxIdleConnsPerHost = 0
[entryPoints]
[entryPoints.web]
address = ":80"
[entryPoints.web-secure]
address = ":443"
[entryPoints.phpfpm]
address = ":9000"
[entryPoints.mysql]
address = ":3306"
[entryPoints.redis]
address = ":6379"
[providers]
providersThrottleDuration = "2s"
[providers.docker]
watch = true
endpoint = "unix:///var/run/docker.sock"
exposedByDefault = false
network = "traefik"
# swarmModeRefreshSeconds = "15s"
# [providers.docker.tls]
# insecureSkipVerify = true
[providers.file]
directory = "/etc/traefik/conf.d/"
watch = true
[api]
insecure = true
dashboard = true
[metrics]
[metrics.prometheus]
buckets = [0.1, 0.3, 1.2, 5.0]
entryPoint = "traefik"
[ping]
[log]
level = "WARNING"
# level = "DEBUG"
[accessLog]
bufferingSize = 100