From 01904e1541f9d8d316aedfeeade14c215548864b Mon Sep 17 00:00:00 2001 From: Christian Lempa Date: Fri, 29 Nov 2024 14:23:34 +0100 Subject: [PATCH] fix for tls example --- .../traefik/config/conf.d/tls.yaml.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose/traefik/config/conf.d/tls.yaml.example diff --git a/docker-compose/traefik/config/conf.d/tls.yaml.example b/docker-compose/traefik/config/conf.d/tls.yaml.example new file mode 100644 index 00000000..5bd28ba8 --- /dev/null +++ b/docker-compose/traefik/config/conf.d/tls.yaml.example @@ -0,0 +1,17 @@ +# -- Change TLS Configuration here... +tls: + options: + default: + minVersion: VersionTLS12 + sniStrict: true + curvePreferences: + - CurveP256 + - CurveP384 + - CurveP521 + cipherSuites: + - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 + - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 + - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 + - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 + - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 + - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305