Annotation of mqtt/etc/mqtt.conf, revision 1.3

1.2       misho       1: #
                      2: # Sample config for MQTT service
                      3: #
                      4: 
                      5: [mqttd]
                      6: user = mqtt
                      7: statedir = /tmp/mqtt
                      8: 
                      9: pub_file = /usr/local/lib/mqtt/mqtt_pub.so
                     10: acc_file = /usr/local/lib/mqtt/mqtt_acc.so
                     11: log_file = /usr/local/lib/mqtt/mqtt_log.so
                     12: 
                     13: listen = 0.0.0.0
                     14: port = 1883
                     15: 
                     16: retry = 1
                     17: 
                     18: [mqtt_acc]
                     19: name = /etc/mqtt/acc.db
                     20: 
                     21: tbl_users = Users
                     22: 
                     23: [mqtt_pub]
                     24: name = /etc/mqtt/pub.db
                     25: 
                     26: tbl_online = Online
                     27: tbl_topics = Topics
1.3     ! misho      28: tbl_subscribes = Subscribes
1.2       misho      29: 
                     30: [mqtt_log]
                     31: name = /var/log/mqtt.log

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>