Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matrix-org/matrix-appservice-verto
A Matrix <--> Verto bridge, designed for conferencing
https://github.com/matrix-org/matrix-appservice-verto
Last synced: 28 days ago
JSON representation
A Matrix <--> Verto bridge, designed for conferencing
- Host: GitHub
- URL: https://github.com/matrix-org/matrix-appservice-verto
- Owner: matrix-org
- License: apache-2.0
- Created: 2015-09-10T12:51:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-01T11:48:38.000Z (over 7 years ago)
- Last Synced: 2024-11-04T04:31:21.463Z (about 1 month ago)
- Language: JavaScript
- Size: 42 KB
- Stars: 16
- Watchers: 39
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - matrix-org/matrix-appservice-verto - A Matrix <--> Verto bridge, designed for conferencing (others)
README
# matrix-appservice-verto
A Matrix <--> Verto bridge, designed for conferencing.## Usage
### Installing
Set up and run a FreeSWITCH 1.6 or later (ideally 1.7). Make sure `mod_verto` is installed and works with the verto example app (try to join a conference on 3500)
```
$ git clone [email protected]:matrix-org/matrix-appservice-verto.git
$ cd matrix-appservice-verto
$ npm install
```### Registering
```
$ node app -r -u "http://appservice-url-here"
Generating registration to 'config/verto-registration.yaml' for the AS accessible from: http://appservice-url-here
```
Add `verto-registration.yaml` to Synapse's `homeserver.yaml` config file:
```
# homeserver.yaml
app_service_config_files: ["/path/to/matrix-appservice-verto/config/verto-registration.yaml"]
```### Configuring
```
$ cp config/config.sample.yaml config/config.yaml
``````yaml
# config/config.yaml
homeserver:
url: http://localhost:8008
domain: localhostverto:
url: "ws://freeswitch.url.here:8081/"
passwd: "1234567890"verto-dialog-params:
login: "[email protected]"
...
```### Running
```
$ node app -c config/config.yaml
Loading config file /path/matrix-appservice-verto/config/config.yaml
[ws://freeswitch.url.here:8081/]: OPENED
[ws://freeswitch.url.here:8081/]: SENDING {"jsonrpc":"2.0","method":"login","params":{"login":"[email protected]","passwd":"1234567890","sessid":"af5cc400-811c-4c5b-896a-25be7b413f5f"},"id":1}[ws://freeswitch.url.here:8081/]: MESSAGE {"jsonrpc":"2.0","id":1,"result":{"message":"logged in","sessid":"af5cc400-811c-4c5b-896a-25be7b413f5f"}}
Running bridge on port 8090
```
You can supply `-p PORT` to set a custom port.