From bcbc5a25b1232b857a54ac16ff9d1ed147292f76 Mon Sep 17 00:00:00 2001 From: Stephane de Labrusse Date: Mon, 11 Mar 2024 17:13:21 +0100 Subject: [PATCH] Allow to start the domain name or FQDN by a numeric --- imageroot/actions/configure-module/validate-input.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imageroot/actions/configure-module/validate-input.json b/imageroot/actions/configure-module/validate-input.json index 2b85858..5bc564c 100644 --- a/imageroot/actions/configure-module/validate-input.json +++ b/imageroot/actions/configure-module/validate-input.json @@ -37,7 +37,7 @@ "domain": { "type": "string", "title": "Domain name", - "pattern": "^[a-zA-Z][-a-zA-Z0-9]{0,62}(\\.[a-zA-Z][-a-zA-Z0-9]{0,62})+$", + "pattern": "^[a-zA-Z0-9][-a-zA-Z0-9]{0,62}(\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+$", "maxLength": 140, "minLength": 1 }