added eclipse-mosquitto

This commit is contained in:
2022-11-17 23:57:30 +01:00
parent 7ce3c4f6a9
commit e545a7d823
8 changed files with 31 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
listener 1883
persistence false
# persistence_location /mosquitto/data/
log_dest file /mosquitto/log/mosquitto.log
## Authentication ##
# By default, Mosquitto >=2.0 allows only authenticated connections. Change to true to enable anonymous connections.
allow_anonymous true
# password_file /mosquitto/config/password.txt

View File

@@ -0,0 +1,16 @@
# Loads default set of integrations. Do not remove
# This was added to the homeAutomation repo.
default_config:
# Text to speech
tts:
- platform: google_translate
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
http:
use_x_forwarded_for: true
trusted_proxies:
- 10.55.8.1

View File

@@ -0,0 +1,54 @@
defaultEntryPoints = ["http"]
[entryPoints]
[entryPoints.whoami]
address = ":8088"
[entryPoints.homeassistant]
address = ":8089"
[entryPoints.syncthing]
address = ":8090"
[entryPoints.rabbitmq-admin]
address = ":8091"
[entryPoints.rabbitmq]
address = ":8092"
[file]
[backends]
[backends.whoami]
[backends.whoami.servers.server1]
url = "http://localhost:2001"
[backends.homeassistant]
[backends.homeassistant.servers.server1]
url = "http://10.55.8.3:8123/"
[backends.syncthing]
[backends.syncthing.servers.server1]
url = "http://10.55.8.3:8384/"
[backends.rabbitmq-admin]
[backends.rabbitmq-admin.servers.server1]
url = "http://10.55.8.3:15672/"
[backends.rabbitmq]
[backends.rabbitmq.servers.server1]
url = "http://10.55.8.3:1883/"
[frontends]
[frontends.whoami]
entryPoints = ["whoami"]
backend = "whoami"
[frontends.homeassistant]
entryPoints = ["homeassistant"]
backend = "homeassistant"
[frontends.syncthing]
entryPoints = ["syncthing"]
backend = "syncthing"
[frontends.rabbitmq-admin]
entryPoints = ["rabbitmq-admin"]
backend = "rabbitmq-admin"
[frontends.rabbitmq]
entryPoints = ["rabbitmq"]
backend = "rabbitmq"