1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #
# !!! This file is managed by Ansible !!!
#
# Config file for mosquitto
#
# See mosquitto.conf(5) for more information.
#
# Default values are shown, uncomment to change.
#
# Use the # character to indicate a comment, but only if it is the
# very first character on the line.
listener {{ services.mosquitto.port | default(1883) }} {{ services.mosquitto.listenAddress | default("0.0.0.0") }}
{% if services.mosquitto.enableAnonymousLogin is true %}
allow_anonymous true
{% else %}
allow_anonymous false
{% endif %}