Hey all!
I searched the forum and tried several different suggested but could quite figure it out.
I try to disable every TLS version <= TLS 1.1 and this is what I have:
traefik.toml
[global]
checkNewVersion = true
[log]
level = "WARN"
[entryPoints]
[entryPoints.web-secure]
address = ":443"
[tls]
[tls.options]
[tls.options.default]
sniStrict = true
minVersion = "VersionTLS12"
[providers.docker]
exposedByDefault = false
[api]
insecure = true
[certificatesResolvers.le.acme]
email = "admin@domain.tl"
storage = "/acme.json"
[certificatesResolvers.le.acme.tlsChallenge]
docker-compose.yml
version: "3.3"
services:
traefik:
image: "traefik:v2.1"
container_name: "traefik"
ports:
- "80:80"
- "443:443"
- "8080:8080"
volumes:
- "./traefik.toml:/traefik.toml" # Traefik configuration file
- "./acme.json:/acme.json"
- "/var/run/docker.sock:/var/run/docker.sock:ro"
ide:
image: containous/whoami:v1.3.0
ports:
- "3000:80"
container_name: ide
labels:
- "traefik.enable=true"
- "traefik.http.routers.ide.rule=Host(`sub.domain.tl`)"
- "traefik.http.routers.ide.tls=true"
- "traefik.http.routers.ide.tls.certresolver=le"
- "traefik.http.routers.ide.entrypoints=web-secure"
I checked with several different tools but they all list TLS 1.0 and TLS 1.1 to be available..
Please help