diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-04 17:28:39 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-04 17:28:39 +0200 |
commit | 5b861cd6523382afae189566e41692f8daf55669 (patch) | |
tree | 5b309123c7393f618f769c62b5eefc430d8c1a8a | |
parent | 79d68c4aa36ea29b0c37307070548b30e5675c7b (diff) | |
download | infrastructure-5b861cd6523382afae189566e41692f8daf55669.tar.gz infrastructure-5b861cd6523382afae189566e41692f8daf55669.zip |
Remove unused Traefik config
-rw-r--r-- | app/frontend/config/traefik.toml | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/app/frontend/config/traefik.toml b/app/frontend/config/traefik.toml deleted file mode 100644 index e274be8..0000000 --- a/app/frontend/config/traefik.toml +++ /dev/null @@ -1,59 +0,0 @@ -InsecureSkipVerify = true -defaultEntryPoints = ["http", "https"] - -[entryPoints] - [entryPoints.admin] - address = ":8082" - - [entryPoints.http] - address = ":80" - [entryPoints.http.redirect] - entryPoint = "https" - - [entryPoints.https] - address = ":443" - compress = true - [entryPoints.https.tls] - minVersion = "VersionTLS12" - cipherSuites = [ - "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305", - "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305", - "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", - "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256", - "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", - "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384" - ] - -[ping] -entrypoint = "admin" - -[retry] - -[acme] - email = "quentin@dufour.io" - storage = "traefik/acme/account" - entryPoint = "https" - onHostRule = true - - [acme.httpChallenge] - entryPoint = "http" - -[api] - entryPoint = "admin" - dashboard = true - -[consul] - endpoint = "172.17.0.1:8500" - watch = true - prefix = "traefik" - -[consulCatalog] - endpoint = "172.17.0.1:8500" - prefix = "traefik" - domain = "web.deuxfleurs.fr" - exposedByDefault = false - -[metrics] - [metrics.prometheus] - # -- below is for traefik 1.7 see https://doc.traefik.io/traefik/v1.7/configuration/metrics/ - entryPoint = "admin" |