From c89892e4bc6761e9964411a79c9f2826038b4566 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 26 Sep 2022 15:26:05 +0200 Subject: [PATCH] Readd parameters to config --- gitea/config.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gitea/config.json b/gitea/config.json index a3b313ebd..bf6d09e4e 100644 --- a/gitea/config.json +++ b/gitea/config.json @@ -14,7 +14,9 @@ "options": { "certfile": "fullchain.pem", "keyfile": "privkey.pem", - "ssl": false + "ssl": false, + "APP_NAME": "Gitea for Homeassistant", + "DOMAIN": "homeassistant.local" }, "ports": { "22/tcp": 2222, @@ -27,7 +29,10 @@ "schema": { "certfile": "str", "keyfile": "str", - "ssl": "bool" + "ssl": "bool", + "APP_NAME": "str?", + "DOMAIN": "str", + "ROOT_URL": "str?" }, "slug": "gitea", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/gitea",