How to set Cypher Suite in a YML Way?

Hi, I use Docker with Traefik. I've got my traefik YML file, but do not know how to setup preferred cypher in the YML file. I know the usual config would be:

spec:
  minVersion: VersionTLS12
  cipherSuites:
    - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384

But how to convert the above in a YML way? Like, e.g.:

   command:
      - --entryPoints=Name:http Address::80 Compress:true Redirect.EntryPoint:https
      - --entryPoints=Name:https Address::443 Compress:true TLS
      - --defaultEntryPoints=https,http

Thank you.

TLS Options have to be loaded in a dynamic file configuration:

https://doc.traefik.io/traefik/https/tls/#tls-options
https://doc.traefik.io/traefik/https/tls/#cipher-suites

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.