forked from crossbario/autobahn-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request crossbario#273 from oberstet/master
rel_0.12.0
- Loading branch information
Showing
32 changed files
with
770 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
{ | ||
"version": 2, | ||
"workers": [ | ||
{ | ||
"type": "router", | ||
"realms": [ | ||
{ | ||
"name": "crossbardemo", | ||
"roles": [ | ||
{ | ||
"name": "anonymous", | ||
"permissions": [ | ||
{ | ||
"uri": "", | ||
"match": "prefix", | ||
"allow": { | ||
"call": true, | ||
"register": true, | ||
"publish": true, | ||
"subscribe": true | ||
}, | ||
"disclose": { | ||
"caller": false, | ||
"publisher": false | ||
}, | ||
"cache": true | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "authenticated", | ||
"permissions": [ | ||
{ | ||
"uri": "", | ||
"match": "prefix", | ||
"allow": { | ||
"call": true, | ||
"register": true, | ||
"publish": true, | ||
"subscribe": true | ||
}, | ||
"disclose": { | ||
"caller": false, | ||
"publisher": false | ||
}, | ||
"cache": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"transports": [ | ||
{ | ||
"type": "universal", | ||
"endpoint": { | ||
"type": "tcp", | ||
"port": 8080 | ||
}, | ||
"rawsocket": { | ||
"serializers": [ | ||
"cbor", "msgpack", "ubjson", "json" | ||
] | ||
}, | ||
"websocket": { | ||
"ws": { | ||
"type": "websocket", | ||
"serializers": [ | ||
"cbor", "msgpack", "ubjson", "json" | ||
], | ||
"options": { | ||
"compression": { | ||
"deflate": { | ||
"request_no_context_takeover": false, | ||
"request_max_window_bits": 13, | ||
"no_context_takeover": false, | ||
"max_window_bits": 13, | ||
"memory_level": 5 | ||
} | ||
} | ||
} | ||
}, | ||
"auth_ws": { | ||
"type": "websocket", | ||
"auth": { | ||
"wampcra": { | ||
"type": "static", | ||
"users": { | ||
"username": { | ||
"secret": "p4ssw0rd", | ||
"role": "authenticated" | ||
} | ||
} | ||
}, | ||
"anonymous": { | ||
"type": "static", | ||
"role": "anonymous" | ||
} | ||
} | ||
} | ||
}, | ||
"web": { | ||
"paths": { | ||
"/": { | ||
"type": "static", | ||
"directory": ".", | ||
"options": { | ||
"enable_directory_listing": true, | ||
"mime_types": { | ||
".md": "text/plain", | ||
".py": "text/plain" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} |
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,7 @@ | ||
Crossbar.io node private key - KEEP THIS SAFE! | ||
|
||
creator: oberstet@thinkpad-t430s | ||
created-at: 2017-03-26T23:29:47.358Z | ||
machine-id: 7a3357418649414dbd536c31c6bd0ee8 | ||
public-key-ed25519: 9e837b9c3b8a14ad5bbeb6b3671403f31d2010e776a36e1833356ea4be0b30b3 | ||
private-key-ed25519: b12d4c6804da2884524addf1671d5e0d00ed0c2de624924c6b19331c4c4c9cbe |
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,6 @@ | ||
Crossbar.io node public key | ||
|
||
creator: oberstet@thinkpad-t430s | ||
created-at: 2017-03-26T23:29:47.358Z | ||
machine-id: 7a3357418649414dbd536c31c6bd0ee8 | ||
public-key-ed25519: 9e837b9c3b8a14ad5bbeb6b3671403f31d2010e776a36e1833356ea4be0b30b3 |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node-v*-linux-x64/ | ||
.sconsign.dblite | ||
*.sublime-workspace | ||
build | ||
|
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
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
Oops, something went wrong.