tests/wamp/.crossbar/config.json
author Edouard Tisserant
Fri, 21 Feb 2020 16:15:33 +0100
branchsvghmi
changeset 2840 e588f25e6c74
parent 2194 35d6b9321ffd
permissions -rw-r--r--
SVGHMI: Better and less verbose SVG namespace handling in XSLT transform
{
    "version": 2,
    "controller": {},
    "workers": [
        {
            "type": "router",
            "options": {
                "pythonpath": [
                    ".."
                ]
            },
            "realms": [
                {
                    "name": "Automation",
                    "roles": [
                        {
                            "name": "anonymous",
                            "permissions": [
                                {
                                    "uri": "",
                                    "match": "prefix",
                                    "allow": {
                                        "call": true,
                                        "register": true,
                                        "publish": true,
                                        "subscribe": true
                                    },
                                    "disclose": {
                                        "caller": false,
                                        "publisher": false
                                    },
                                    "cache": true
                                }
                            ]
                        }
                    ]
                }
            ],
            "transports": [
                {
                    "type": "websocket",
                    "debug": true,
                    "endpoint": {
                        "type": "tcp",
                        "port": 8888
                    },
                    "url": "ws://127.0.0.1:8888/",
                    "serializers": [
                        "msgpack",
                        "json"
                    ]
                }
            ]
        }
    ]
}