-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtraefik.yml
More file actions
37 lines (35 loc) · 900 Bytes
/
traefik.yml
File metadata and controls
37 lines (35 loc) · 900 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
37
## traefik.yml for v2
global:
checkNewVersion: true
sendAnonymousUsage: true
entrypoints:
web:
address: ":80"
websecure:
address: ":443"
# Docker configuration backend
providers:
docker:
exposedbydefault: false
watch: true
endpoint: unix:///var/run/docker.sock
network: web
# API and dashboard configuration
api:
insecure: true
dashboard: true
debug: true
log:
level: DEBUG
certificatesResolvers:
default:
acme:
email: admin@kautionsfrei.de
# Use the staging server for testing, remove when ready
#caServer: https://acme-staging-v02.api.letsencrypt.org/directory
storage: /acme/acme.json
dnsChallenge:
provider: route53
# Needs the following ENVIROMENT VARIABLES: AWS_ACCESS_KEY_ID,
# AWS_SECRET_ACCESS_KEY, [AWS_REGION], [AWS_HOSTED_ZONE_ID]
# or a configured user/instance IAM profile.