From 23e5d8fbeb2e9c4a783f4f676e39f749c4817977 Mon Sep 17 00:00:00 2001 From: Blaine Date: Mon, 28 Oct 2024 07:35:55 -0400 Subject: [PATCH] Remove TLS 1.0 and 1.1 from the default. --- stable/artifactory-ha/files/nginx-artifactory-conf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stable/artifactory-ha/files/nginx-artifactory-conf.yaml b/stable/artifactory-ha/files/nginx-artifactory-conf.yaml index 82a867cae..5747dfa99 100644 --- a/stable/artifactory-ha/files/nginx-artifactory-conf.yaml +++ b/stable/artifactory-ha/files/nginx-artifactory-conf.yaml @@ -2,7 +2,7 @@ {{- if .Values.nginx.https.protocols }} ssl_protocols {{ .Values.nginx.https.protocols }}; {{- else -}} -ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; +ssl_protocols TLSv1.2 TLSv1.3; {{- end }} {{- if .Values.nginx.https.ciphers }} ssl_ciphers {{ .Values.nginx.https.ciphers }};