From 6bc8990070639ca7bfc5f32507598ae26f16ea06 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 22 Nov 2023 04:23:47 -0500 Subject: [PATCH] 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" },