-
Notifications
You must be signed in to change notification settings - Fork 0
/
traefik.yml
57 lines (48 loc) · 1.13 KB
/
traefik.yml
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
53
54
55
56
global:
checkNewVersion: true
sendAnonymousUsage: false
api:
dashboard: true
insecure: true
debug: true
entryPoints:
web:
address: ":80"
websecure:
address: ":443"
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
network: tchat-net
file:
directory: /etc/traefik/dynamic_conf
watch: true
#metrics:
# influxDB2:
# address: http://influxdb:8086
# # todo: move the token to a secret
# token: '`{{ env "TCHAT_INFLUXDB2_TOKEN" }}`'
# org: xtasnim
# bucket: xbucket
# addEntryPointsLabels: true
# addRoutersLabels: true
# addServicesLabels: true
# pushInterval: 1s
# certificatesResolvers:
# staging:
# acme:
# email: [email protected]
# storage: acme.json
# caServer: https://acme-staging-v02.api.letsencrypt.org/directory
# httpChallenge:
# entryPoint: web
# tlsChallenge: { }
# production:
# acme:
# email: [email protected]
# storage: acme.json
# caServer: https://acme-v02.api.letsencrypt.org/directory
# httpChallenge:
# entryPoint: web
# tlsChallenge: { }