added eclipse-mosquitto
This commit is contained in:
9
configurations/eclipse-mosquitto/mosquitto.conf
Normal file
9
configurations/eclipse-mosquitto/mosquitto.conf
Normal 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
|
||||
16
configurations/home-assistant/configuration.yaml
Normal file
16
configurations/home-assistant/configuration.yaml
Normal 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
|
||||
54
configurations/traefik/traefik.1.7.10.toml
Normal file
54
configurations/traefik/traefik.1.7.10.toml
Normal 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"
|
||||
|
||||
Reference in New Issue
Block a user