-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Connectivity to parent broker implemented
- Loading branch information
Fanda Vacek
committed
Jan 1, 2024
1 parent
a9f9cca
commit d3229a5
Showing
7 changed files
with
175 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
listen: | ||
tcp: localhost:3756 | ||
ssl: null | ||
editable_access: false | ||
data_directory: null | ||
parent_broker: | ||
enabled: true | ||
client: | ||
url: tcp://child-broker@localhost:3755?password=child-broker | ||
device_id: "test-child-broker" | ||
mount: null | ||
heartbeat_interval: 1m | ||
reconnect_interval: null | ||
exported_root: 'test' | ||
access: | ||
users: | ||
tester: | ||
password: !Sha1 ab4d8d2a5f480a137067da17100271cd176607a1 | ||
roles: | ||
- tester | ||
admin: | ||
password: !Plain admin | ||
roles: | ||
- su | ||
user: | ||
password: !Plain user | ||
roles: | ||
- client | ||
child-broker: | ||
password: !Plain child-broker | ||
roles: | ||
- child-broker | ||
roles: | ||
tester: | ||
roles: | ||
- client | ||
access: | ||
- paths: test/** | ||
methods: '' | ||
grant: cfg | ||
browse: | ||
roles: [] | ||
access: | ||
- paths: '**' | ||
methods: '' | ||
grant: bws | ||
subscribe: | ||
roles: [] | ||
access: | ||
- paths: .app/broker/currentClient | ||
methods: subscribe | ||
grant: wr | ||
- paths: .app/broker/currentClient | ||
methods: unsubscribe | ||
grant: wr | ||
device: | ||
roles: | ||
- client | ||
access: [] | ||
client: | ||
roles: | ||
- ping | ||
- subscribe | ||
- browse | ||
access: [] | ||
ping: | ||
roles: [] | ||
access: | ||
- paths: .app | ||
methods: ping | ||
grant: wr | ||
su: | ||
roles: [] | ||
access: | ||
- paths: '**' | ||
methods: '' | ||
grant: su | ||
child-broker: | ||
roles: | ||
- device | ||
access: [] | ||
mounts: | ||
test-child-broker: | ||
mountPoint: shv/test/child-broker | ||
description: Testing child broker mount-point | ||
test-device: | ||
mountPoint: shv/test/device | ||
description: Testing device mount-point |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters