✨ mqtt connections
almost working, need encryption
This commit is contained in:
parent
20ab0153d1
commit
125d50530d
15 changed files with 1259 additions and 42 deletions
17
mosquitto/config/mosquitto.conf
Normal file
17
mosquitto/config/mosquitto.conf
Normal file
|
@ -0,0 +1,17 @@
|
|||
# mosquitto.conf
|
||||
|
||||
# Standard MQTT listener (for regular clients, optional)
|
||||
listener 1883
|
||||
protocol mqtt
|
||||
|
||||
# WebSocket MQTT listener
|
||||
listener 8083
|
||||
protocol websockets
|
||||
|
||||
# Allow anonymous connections (testing)
|
||||
allow_anonymous true
|
||||
|
||||
max_packet_size 10485760 # 10 MB
|
||||
|
||||
# Logging
|
||||
log_dest stdout
|
Loading…
Add table
Add a link
Reference in a new issue