From 95510e6e1d57c7f8d0fa7e8cc298fc6019c13a93 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Fri, 11 Jun 2021 11:08:35 +0200 Subject: [PATCH] settings - add underscore to CUSTOM_HTTPS_CERT/KEY regex --- settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.json b/settings.json index 794d9d6..f7b0ab8 100644 --- a/settings.json +++ b/settings.json @@ -579,7 +579,7 @@ "env": "CUSTOM_HTTPS_CERT", "id": "custom-https-cert", "label": "Custom TLS certificate path", - "regex": "^[A-Za-z\\.0-9\\/\\-]*$", + "regex": "^[A-Za-z\\.0-9\\/\\-\\_]*$", "type": "text" }, { @@ -588,7 +588,7 @@ "env": "CUSTOM_HTTPS_KEY", "id": "custom-https-key", "label": "Custom TLS certificate key", - "regex": "^[A-Za-z\\.0-9\\/\\-]*$", + "regex": "^[A-Za-z\\.0-9\\/\\-\\_]*$", "type": "text" }, {