mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-18 11:24:24 +01:00
* config option for mosquitto log_type * change log_type to be based on LOGGING * remove extra whitespace * use bashio::log.<level> for logging * set run.sh and auth_srv.sh bashio logging level to match supervisor level * lint fixes * Update mosquitto/data/auth_srv.sh Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch> * HomeMatic: s6-overlay & tempio (#1713) * HomeMatic: s6-overlay & tempio * Use tempio * fix line end * Fix dev version * Fix bugs * S6-overlay cleanup for HM & deCONZ (#1717) * HomeMatic: take container down on ReGaHss (#1719) * HomeMatic: Fix ingress (#1720) * HomeMatic: Fix ingress * Fix count * Fix template HM * set run.sh and auth_srv.sh bashio logging level to match supervisor level * lint fixes * Update mosquitto/data/auth_srv.sh Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch> Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch> Co-authored-by: Pascal Vizeli <pvizeli@syshack.ch>
42 lines
685 B
Plaintext
42 lines
685 B
Plaintext
##
|
|
# defaults
|
|
protocol mqtt
|
|
user root
|
|
|
|
##
|
|
# logging
|
|
log_dest stdout
|
|
log_type error
|
|
log_type warning
|
|
log_type notice
|
|
log_type information
|
|
|
|
##
|
|
# datastore
|
|
persistence true
|
|
persistence_location /data/
|
|
|
|
##
|
|
# User settings
|
|
auth_plugin /usr/share/mosquitto/auth-plug.so
|
|
auth_opt_backends http
|
|
auth_opt_http_ip 127.0.0.1
|
|
auth_opt_http_port 8080
|
|
auth_opt_http_getuser_uri /login
|
|
auth_opt_http_superuser_uri /superuser
|
|
auth_opt_http_aclcheck_uri /acl
|
|
auth_opt_log_quiet %%AUTH_QUIET_LOGS%%
|
|
auth_opt_auth_cacheseconds 300
|
|
|
|
allow_anonymous %%ANONYMOUS%%
|
|
|
|
#include_dir /share/mosquitto
|
|
|
|
listener 1883
|
|
protocol mqtt
|
|
|
|
listener 1884
|
|
protocol websockets
|
|
|
|
# Follow SSL listener if a certificate exists
|