This commit is contained in:
2021-06-29 12:37:08 +03:00
commit 12fdc96d20
282 changed files with 13627 additions and 0 deletions

26
mqtt/CHANGELOG.md Normal file
View File

@@ -0,0 +1,26 @@
## ⚠️ Deprecation notice!
This is the final and last release of this add-on, which is now deprecated.
We strongly advise you to upgrade/migrate to using the Mosquitto add-on, as provided by the Home Assistant project.
This add-on will be removed from the add-on store soon.
## Changes
- :pencil2: Maintaince -> Maintenance
- :ambulance: Fixes path handling for SSL certificates
- :hammer: Updates HA Auth URL in NGinx LUA script
- :hammer: Use Hass.io DNS as NGinx resolver
- :fireworks: Updates maintenance/license year to 2020
- :books: Update add-on documentation to use new YAML configuration format
- :hammer: Re-branding
- :pencil2: Fixes some typos
- :hammer: Update add-on config with new password & list features
- :arrow_up: Upgrades add-on base image to v7.0.2
- :warning: Adds deprecation notices
[Full Changelog][changelog]
[changelog]: https://github.com/hassio-addons/addon-mqtt/compare/v1.1.0...v1.2.0

44
mqtt/README.md Normal file
View File

@@ -0,0 +1,44 @@
# Home Assistant Community Add-on: MQTT Server & Web client
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
Mosquitto MQTT Server bundled with Hivemq's web client.
## Deprecation warning
**This add-on is in a deprecated state!**
This add-on is now deprecated. We highly recommend on switching to the
official Home Assistant Mosquitto add-on as an alternative.
This add-on will soon be removed from the add-on store.
## About
This add-on combines the power of [Hivemq][hivemq]'s
web-based MQTT client, and the powerful [Mosquitto][mosquitto]
broker (MQTT Server). With this, you can host your own MQTT server,
and inspect/publish messages using the built-in web client!
[Click here for the full documentation][docs]
![Screenshot][screenshot]
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/ludeeus
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-mqtt/blob/v1.2.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-ons-mqtt-server-web-client/70376
[hivemq]: https://www.hivemq.com/
[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg
[mosquitto]: https://mosquitto.org/
[project-stage-shield]: https://img.shields.io/badge/project%20stage-%20!%20DEPRECATED%20%20%20!-ff0000.svg
[release-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg
[release]: https://github.com/hassio-addons/addon-mqtt/tree/v1.2.0
[screenshot]: https://github.com/hassio-addons/addon-mqtt/raw/master/images/image.png

82
mqtt/config.json Normal file
View File

@@ -0,0 +1,82 @@
{
"name": "MQTT Server & Web client",
"version": "1.2.0",
"slug": "mqtt",
"description": "Mosquitto MQTT Server bundled with Hivemq's web client",
"url": "https://github.com/hassio-addons/addon-mqtt/tree/master/README.md",
"webui": "https://[HOST]:[PORT:80]",
"ingress": true,
"ingress_port": 1337,
"homeassistant": "0.92.0",
"panel_icon": "mdi:code-brackets",
"panel_title": "MQTT",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"boot": "auto",
"auth_api": true,
"hassio_api": true,
"hassio_role": "default",
"ports": {
"80/tcp": null,
"1883/tcp": 1883,
"1884/tcp": 1884,
"4883/tcp": 4883,
"4884/tcp": 4884
},
"ports_description": {
"80/tcp": "HiveMQ web interface (Not required for Ingress)",
"1883/tcp": "Standard MQTT port (without SSL)",
"1884/tcp": "Standard WebSocket port (without SSL)",
"4883/tcp": "Secure MQTT port (with SSL)",
"4884/tcp": "Secure WebSocket port (with SSL)"
},
"map": [
"share",
"ssl",
"config"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"broker": true,
"allow_anonymous": false,
"mqttusers": [
{
"username": "",
"password": "",
"readonly": true,
"topics": [
"#"
]
}
]
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"broker": "bool",
"allow_anonymous": "bool",
"mqttusers": [
{
"username": "str",
"password": "password",
"readonly": "bool",
"topics": [
"str"
]
}
],
"i_like_to_be_pwned": "bool?",
"leave_front_door_open": "bool?"
},
"image": "hassioaddons/mqtt"
}

BIN
mqtt/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
mqtt/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB