-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Closed
Labels
Description
Welcome!
- Yes, I've searched similar issues on GitHub and didn't find any.
- Yes, I've searched similar issues on the Traefik community forum and didn't find any.
What did you do?
Consider a docker container with the following labels:
- traefik.http.routers.web-all.rule=(Host(`example.co.uk`) || Host(`www.example.co.uk`))
- traefik.http.routers.web-all.entrypoints=https,http
- traefik.http.routers.web-all.middlewares=middleware-https-redirectThis works as expected and will listen on http and https entrypoints and redirect http connections to https.
What did you see instead?
We add a label:
- traefik.http.routers.web-all.tls.certresolver=dnsNow the http entrypoint is broken because TLS is enabled for it, and it will no longer redirect connections to http.
Configuring a certresolver on a router should not force a http listener to enable TLS.
What version of Traefik are you using?
Version: 2.10.1
Codename: saintmarcelin
Go version: go1.20.3
Built: 2023-04-27T14:52:35Z
OS/Arch: linux/amd64
What is your environment & configuration?
api:
dashboard: true
experimental:
http3: true
entryPoints:
http:
address: ":80"
http:
middlewares:
- middleware-crowdsec-bouncer@file
https:
address: ":443"
http3:
advertisedPort: 443
http:
middlewares:
- middleware-crowdsec-bouncer@file
tls: {}
providers:
docker:
endpoint: "tcp://traefik-dockerproxy:2375"
exposedByDefault: false
defaultRule: "Host(`{{ index .Labels \"com.docker.compose.service\"}}.example.co.uk`)"
network: proxy
file:
directory: "/configs"
watch: true
certificatesResolvers:
dns:
acme:
email: cert@example.co.uk
storage: acme.json
dnsChallenge:
provider: cloudflare
resolvers:
- "1.1.1.1:53"
- "1.0.0.1:53"
serversTransport:
insecureSkipVerify: false
accessLog:
fields:
headers:
defaultMode: keep
log:
filePath: "/logs/traefik.log"
level: INFOAdd more configuration information here.
middleware-crowdsec-bouncer:
forwardauth:
address: http://traefik-crowdsec-bouncer:8080/api/v1/forwardAuth
trustForwardHeader: true - traefik.http.middlewares.middleware-https-redirect.redirectscheme.scheme=httpsIf applicable, please paste the log output in DEBUG level
No response
