20 lines
476 B
Plaintext
20 lines
476 B
Plaintext
# HomeOS — Eclipse Mosquitto 2. Auth + per-client ACLs from day one.
|
|
listener 1883
|
|
protocol mqtt
|
|
|
|
# No anonymous access — every client authenticates (laravel, shelly, sidecar).
|
|
allow_anonymous false
|
|
password_file /mosquitto/config/passwd
|
|
acl_file /mosquitto/config/acl
|
|
|
|
persistence true
|
|
persistence_location /mosquitto/data/
|
|
autosave_interval 60
|
|
|
|
# Log to stdout (docker logs)
|
|
log_dest stdout
|
|
log_type warning
|
|
log_type notice
|
|
log_type information
|
|
connection_messages true
|