-
Notifications
You must be signed in to change notification settings - Fork 6
/
traefik.yml
45 lines (38 loc) · 1.07 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
accessLog: {}
api:
dashboard: true
log:
level: DEBUG # CHANGEME: Use higher log level instead
# level: INFO
certificatesResolvers:
letsencrypt:
acme:
# CHANGEME: Use a real email (to receive notifications from Let's Encrypt)
email: [email protected]
# CHANGEME: This is a staging server. Update to the prod server
caServer: https://acme-staging-v02.api.letsencrypt.org/directory
# caServer: https://acme-v02.api.letsencrypt.org/directory
storage: /etc/acme/acme.json
httpChallenge:
entryPoint: web
# CHANGEME: If you'd like to use the DNS challenge for a wildcard cert.
# See https://doc.traefik.io/traefik/https/acme/#dnschallenge
# dnsChallenge:
# provider: TODO
entryPoints:
web:
address: :80
websecure:
address: :443
global:
checkNewVersion: true
sendAnonymousUsage: false
serversTransport:
insecureSkipVerify: true
providers:
docker:
endpoint: tcp://docker-socket-proxy:2375
exposedByDefault: false
file:
directory: /etc/traefik/dynamic-conf
watch: true