From 620cb248e4ef5294d3ab20893a6e18c2624d2ad1 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 26 Sep 2017 13:49:21 +0200 Subject: [PATCH] split credentials --- configurator/config.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configurator/config.json b/configurator/config.json index 22ea48f..0963984 100644 --- a/configurator/config.json +++ b/configurator/config.json @@ -14,7 +14,8 @@ "options": { "homeassistant_api": "http://homeassistant:8123/api", "homeassistant_password": "", - "credentials": "admin:secret", + "username": "admin", + "password": null, "certfile": "fullchain.pem", "keyfile": "privkey.pem", "ssl": false, @@ -25,7 +26,8 @@ "schema": { "homeassistant_api": "url", "homeassistant_password": "str", - "credentials": "match(.*:.*)", + "username": "str", + "password": "match(.+)", "certfile": "str", "keyfile": "str", "ssl": "bool",