From 6bc8990070639ca7bfc5f32507598ae26f16ea06 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 22 Nov 2023 04:23:47 -0500 Subject: [PATCH 1/3] Add definition for minTls and maxTls Signed-off-by: 1000TurquoisePogs --- schemas/app-server-config.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/schemas/app-server-config.json b/schemas/app-server-config.json index 8567d07..e616502 100755 --- a/schemas/app-server-config.json +++ b/schemas/app-server-config.json @@ -48,6 +48,18 @@ "deprecated": true, "description": "Passes through the secureProtocol attribute to TLS calls of nodeJS, as defined within https://nodejs.org/api/tls.html#tlscreatesecurecontextoptions" }, + "minTls": { + "type": "string", + "enum": ["TLSv1.2", "TLSv1.3"], + "default": "TLSv1.3", + "description": "Maximum TLS version allowed for network connections." + }, + "minTls": { + "type": "string", + "enum": ["TLSv1.2", "TLSv1.3"], + "default": "TLSv1.2", + "description": "Minimum TLS version allowed for network connections, and less than maxTls." + }, "ciphers": { "oneOf": [ { "$ref": "#/$defs/nodejsDefaultCiphers" }, From b16680c3b039bfe86ed0b19208721d648bf105ce Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 22 Nov 2023 04:26:10 -0500 Subject: [PATCH 2/3] Update app-server-config.json Signed-off-by: 1000TurquoisePogs --- schemas/app-server-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/app-server-config.json b/schemas/app-server-config.json index e616502..0c33afb 100755 --- a/schemas/app-server-config.json +++ b/schemas/app-server-config.json @@ -48,7 +48,7 @@ "deprecated": true, "description": "Passes through the secureProtocol attribute to TLS calls of nodeJS, as defined within https://nodejs.org/api/tls.html#tlscreatesecurecontextoptions" }, - "minTls": { + "maxTls": { "type": "string", "enum": ["TLSv1.2", "TLSv1.3"], "default": "TLSv1.3", From 954a9525761d545f2733f708b7ed4475a76d6e60 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 22 Nov 2023 10:02:59 -0500 Subject: [PATCH 3/3] Update app-server-config.json Signed-off-by: 1000TurquoisePogs --- schemas/app-server-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/app-server-config.json b/schemas/app-server-config.json index 0c33afb..4c8405d 100755 --- a/schemas/app-server-config.json +++ b/schemas/app-server-config.json @@ -58,7 +58,7 @@ "type": "string", "enum": ["TLSv1.2", "TLSv1.3"], "default": "TLSv1.2", - "description": "Minimum TLS version allowed for network connections, and less than maxTls." + "description": "Minimum TLS version allowed for network connections, and less than or equal to maxTls." }, "ciphers": { "oneOf": [