Hi, currently i have https redirection enabled for all my containers as the default, but now i have a single web service that breaks when https is used. How i can disable the redirection for that service?
I tried using the following labels but still redirects to https.
labels:
- "traefik.enable=true"
- "traefik.port=80"
- "traefik.docker.network=gateway"
- "traefik.frontend.rule=Host:test.example.com"
# adding this didn't work
- "traefik.frontend.entryPoints=http"
Default config:
defaultEntryPoints = ["http", "https"]
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
certFile = "/certs/example.com/cert.pem"
keyFile = "/certs/example.com/key.pem"
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "example.com"
watch = true
exposedByDefault = false
swarmMode = true
network = "gateway"