This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
traefik.autonomic.zone/traefik.yml

47 lines
857 B
YAML
Raw Normal View History

2020-04-25 09:24:49 +00:00
---
log:
2020-09-21 16:09:00 +00:00
level: WARN
2020-04-25 09:24:49 +00:00
providers:
docker:
2020-04-25 09:57:28 +00:00
endpoint: "unix:///var/run/docker.sock"
2020-04-25 09:24:49 +00:00
exposedByDefault: false
2020-05-06 19:37:32 +00:00
network: proxy
2020-04-25 09:57:28 +00:00
swarmMode: true
file:
filename: /etc/traefik/file-provider.yml
2020-04-25 09:24:49 +00:00
api:
dashboard: true
debug: false
2020-04-25 09:24:49 +00:00
entrypoints:
web:
address: ":80"
http:
redirections:
entryPoint:
to: web-secure
2020-04-25 09:24:49 +00:00
web-secure:
address: ":443"
gitea-ssh:
address: ":2222"
2020-04-25 09:24:49 +00:00
2020-06-25 09:51:44 +00:00
ping:
entryPoint: web
2020-04-25 09:24:49 +00:00
certificatesResolvers:
2020-04-25 10:29:53 +00:00
staging:
2020-04-25 09:24:49 +00:00
acme:
2020-05-06 19:37:32 +00:00
email: helo@autonomic.zone
storage: /etc/letsencrypt/staging-acme.json
2020-04-25 09:24:49 +00:00
caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
2020-04-25 10:29:53 +00:00
httpChallenge:
2020-05-06 19:37:32 +00:00
entryPoint: web
2020-05-05 13:47:11 +00:00
production:
acme:
2020-05-06 19:37:32 +00:00
email: helo@autonomic.zone
storage: /etc/letsencrypt/production-acme.json
2020-05-05 13:47:11 +00:00
httpChallenge:
2020-05-06 19:37:32 +00:00
entryPoint: web