moved _copy_to_traefik into _traefik.dynamic
It will be the permanent location of the dynamic traefik config
This commit is contained in:
parent
b8d9ed52c9
commit
fc93ed26b8
9 changed files with 4 additions and 347 deletions
34
_traefik.dynamic/traefik.yml
Normal file
34
_traefik.dynamic/traefik.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
api:
|
||||
dashboard: true
|
||||
insecure: true
|
||||
|
||||
providers:
|
||||
docker:
|
||||
endpoint: 'unix:///var/run/docker.sock'
|
||||
watch: true
|
||||
exposedByDefault: false
|
||||
file:
|
||||
directory: /etc/traefik/dynamic
|
||||
watch: true
|
||||
|
||||
entryPoints:
|
||||
web:
|
||||
address: ':80'
|
||||
http:
|
||||
redirections:
|
||||
entryPoint:
|
||||
to: 'websecure'
|
||||
scheme: 'https'
|
||||
websecure:
|
||||
address: ':443'
|
||||
|
||||
certificatesResolvers:
|
||||
httpresolver:
|
||||
acme:
|
||||
# email: acme@thisprops.com
|
||||
storage: /shared/acme.json
|
||||
httpChallenge:
|
||||
entryPoint: web
|
||||
|
||||
log:
|
||||
level: ERROR
|
Loading…
Add table
Add a link
Reference in a new issue