mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-06 21:54:21 +01:00
* Map additional Hass.io folders Added backup and share to config.json * Make ssl rw * Update config.json * Update CHANGELOG.md * Update config.json * Update config.json * Update CHANGELOG.md * Update CHANGELOG.md * Update config.json
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "Configurator",
|
|
"version": "2",
|
|
"slug": "configurator",
|
|
"description": "Browser-based configuration file editor for Home Assistant.",
|
|
"url": "https://home-assistant.io/addons/configurator",
|
|
"startup": "application",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:3218]",
|
|
"homeassistant_api": true,
|
|
"boot": "auto",
|
|
"ports": {
|
|
"3218/tcp": 3218
|
|
},
|
|
"map": [
|
|
"backup:rw",
|
|
"config:rw",
|
|
"share:rw",
|
|
"ssl:rw"
|
|
],
|
|
"options": {
|
|
"username": "admin",
|
|
"password": null,
|
|
"ssl": false,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem",
|
|
"allowed_networks": ["192.168.0.0/16", "172.30.0.0/16"],
|
|
"banned_ips": ["8.8.8.8"],
|
|
"banlimit": 0,
|
|
"ignore_pattern": ["__pycache__"],
|
|
"dirsfirst": false,
|
|
"enforce_basepath": false,
|
|
"notify_service": "persistent_notification.create"
|
|
},
|
|
"schema": {
|
|
"username": "str",
|
|
"password": "match(.+)",
|
|
"ssl": "bool",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"allowed_networks": ["str"],
|
|
"banned_ips": ["str"],
|
|
"banlimit": "int",
|
|
"ignore_pattern": ["str"],
|
|
"dirsfirst": "bool",
|
|
"enforce_basepath": "bool",
|
|
"notify_service": "str",
|
|
"sesame": "str?",
|
|
"sesame_totp_secret": "str?",
|
|
"loglevel": "str?",
|
|
"verify_hostname": "str?"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-configurator"
|
|
}
|