mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
11 lines
403 B
Plaintext
11 lines
403 B
Plaintext
rules = [
|
|
## Allow MQTT client using username "dashboard" to subscribe to "$SYS/#" topics
|
|
{"permit": "allow", "username": "dashboard", "action": "subscribe", "topics": ["$SYS/#"]}
|
|
|
|
## Deny "All Users" subscribe to "$SYS/#" "#" Topics
|
|
{"permit": "deny", "username": "#", "action": "subscribe", "topics": ["$SYS/#", "#"]}
|
|
|
|
## Allow any other publish/subscribe operation
|
|
{"permit": "allow"}
|
|
]
|