Hey Traefik Community,
I'm facing an issue with my Traefik setup where it's not redirecting HTTP traffic to HTTPS when using a Cloudflare Tunnel. The Cloudflare Tunnel and Traefik are both running on the same network.
Here's my docker-compose configuration:
version: "3.9"
services:
tunnel:
container_name: cf-tunnel
image: cloudflare/cloudflared
restart: unless-stopped
command: tunnel --no-autoupdate run
environment:
- TUNNEL_TOKEN=$CF_TUNNEL_TOKEN
networks:
- cftunnel-transport
traefik:
image: traefik:2.9
container_name: cf-traefik
restart: always
networks:
- cftunnel-transport
- cloudflaretunnel
environment:
- CF_DNS_API_TOKEN=$CF_DNS_API_TOKEN
ports:
- 80:80
- 443:443
- 8080:8080
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./config/:/etc/traefik/
- ./config/conf/:/etc/traefik/conf/
- ./config/certs/:/etc/traefik/certs/
networks:
cftunnel-transport:
cloudflaretunnel:
external: true
traefik Config:
global:
checkNewVersion: false
sendAnonymousUsage: false
log:
level: DEBUG
api:
dashboard: true
insecure: true
debug: false
entryPoints:
web:
address: :80
http:
redirections:
entryPoint:
to: websecure
scheme: https
permanent: true
websecure:
address: :443
certificatesResolvers:
cloudflare:
acme:
email: "my_cloudflare_mail@mail.com"
storage: /etc/traefik/certs/cloudflare-acme.json
caServer: 'https://acme-v02.api.letsencrypt.org/directory'
keyType: EC256
dnsChallenge:
provider: cloudflare
resolvers:
- "1.1.1.1:53"
- "8.8.8.8:53"
serversTransport:
insecureSkipVerify: true
providers:
docker:
exposedByDefault: false
endpoint: 'unix:///var/run/docker.sock'
watch: true
swarmMode: false
file:
directory: /etc/traefik/conf/
watch: true
Labels for the whoami
container:
Cloudflare Configuration:
I can connect via HTTPS to https://test.domain.com
, but http://test.domain.com
doesn't redirect to HTTPS. I'm unsure about what's causing this issue. The redirection works fine with my local DNS entry. I suspect it might be related to Cloudflare, as even after removing the web:80
entrypoint from Traefik, the issue remains the same.
I'd appreciate any help or insights to resolve this issue.