Files
addons/mosquitto/config.json
Antoine Bertin d898650e8e Add cafile and require_certificate options (#623)
* Add cafile and require_certificate options

* Fix variable definition

* Please linter

* Update changelog

* Remove defaulting for cafile and require_certificate

* Change major in changelog for mosquitto

* Make changes backward compatible

* Add missing double quotes

* Achieve real backward compatibility

* Add missing double quotes
2019-09-26 09:41:20 +02:00

47 lines
1.0 KiB
JSON

{
"name": "Mosquitto broker",
"version": "5.1",
"slug": "mosquitto",
"description": "An Open Source MQTT broker",
"url": "https://home-assistant.io/addons/mosquitto/",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "system",
"boot": "auto",
"map": ["ssl", "share"],
"discovery": ["mqtt"],
"services": ["mqtt:provide"],
"auth_api": true,
"ports": {
"1883/tcp": 1883,
"1884/tcp": 1884,
"8883/tcp": 8883,
"8884/tcp": 8884
},
"options": {
"logins": [],
"anonymous": false,
"customize": {
"active": false,
"folder": "mosquitto"
},
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"require_certificate": false
},
"schema": {
"logins": [
{"username": "str", "password": "str"}
],
"anonymous": "bool",
"customize": {
"active": "bool",
"folder": "str"
},
"cafile": "str?",
"certfile": "str",
"keyfile": "str",
"require_certificate": "bool"
},
"image": "homeassistant/{arch}-addon-mosquitto"
}