# # !!! 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 %}