18 lines
417 B
Plaintext
18 lines
417 B
Plaintext
# Mosquitto MQTT broker
|
|
#
|
|
# This config assumes the password file exists at /mosquitto/config/passwd.
|
|
# On first deployment, see README "First-run on the Frigate host" for how
|
|
# to bootstrap that file.
|
|
|
|
listener 1883 0.0.0.0
|
|
protocol mqtt
|
|
|
|
persistence true
|
|
persistence_location /mosquitto/data/
|
|
|
|
log_dest stdout
|
|
log_dest file /mosquitto/log/mosquitto.log
|
|
|
|
allow_anonymous false
|
|
password_file /mosquitto/config/passwd
|