Disable tls .01 toml

Hi everyone,
I am trying to disable TLS 1.0 in traefik. I searched about that the web but I had no luck. In configured traefik with lets encrypt and toml files. All I tried did not affect oder the container doesnt start at all.
Can you please help?

trafik.toml

[entryPoints]
  [entryPoints.web]
    address = ":80"
    [entryPoints.web.http.redirections.entryPoint]
      to = "websecure"
      scheme = "https"

[entryPoints.https]
address = ":443"
  [entryPoints.https.tls]
    minVersion = "VersionTLS12"


[certificatesResolvers.lets-encrypt.acme]
  email = "sysadmin@example.de"
  storage = "acme.json"
  [certificatesResolvers.lets-encrypt.acme.tlsChallenge]

[providers.docker]
  watch = true
  network = "web"

[providers.file]
  filename = "traefik_dynamic.toml"
#
[file]
  [backends]
    [backends.traefik]
      [backends.traefik.servers.server]
      url = "http://127.0.0.1:8080"

traefik_dynamic.toml

[http.middlewares.simpleAuth.basicAuth]
  users = [
    "admin:$apr1$ruca84Hq$mbjdMZBAG.KWn7vfN/SNK/"
  ]

[http.routers.api]
  rule = "Host(`newweb.example.de`)"
  entrypoints = ["websecure"]
  middlewares = ["simpleAuth"]
  service = "api@internal"
  [http.routers.api.tls]
    certResolver = "lets-encrypt"

  rule = "Host(`example.de`)"
  service = "service-id"
  options = "VersionTLS12"

Its a dynamic option. Set it on the default profile. Done.
Unless you have to support mid age browsers just go with TLS13 and see if you get complaints.

[tls.options]

  [tls.options.default]
    minVersion = "VersionTLS12"