Ajouter traefik/traefik-conf.yml
This commit is contained in:
parent
a8c936a19a
commit
b4fe7d8bcf
1 changed files with 31 additions and 0 deletions
31
traefik/traefik-conf.yml
Normal file
31
traefik/traefik-conf.yml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
entryPoints:
|
||||
web:
|
||||
address: ":80"
|
||||
websecure:
|
||||
address: ":443"
|
||||
stun:
|
||||
address: ":3478/udp" # Used for coturn server
|
||||
|
||||
api:
|
||||
dashboard: true
|
||||
insecure: false
|
||||
|
||||
certificatesResolvers:
|
||||
letsencrypt:
|
||||
acme:
|
||||
email: <your email>
|
||||
storage: /letsencrypt/acme.json # You need to create this file manually first
|
||||
dnsChallenge:
|
||||
provider: ovh
|
||||
delayBeforeCheck: 90
|
||||
resolvers:
|
||||
- "8.8.8.8:53"
|
||||
- "1.1.1.1:53"
|
||||
|
||||
log:
|
||||
level: DEBUG
|
||||
|
||||
providers:
|
||||
docker:
|
||||
endpoint: "unix:///var/run/docker.sock"
|
||||
exposedByDefault: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue