-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adds matterbridge service * repair docs * Install Mattebridge role from the MASH organization --------- Co-authored-by: Oliver Lorenz <Oliver Lorenz> Co-authored-by: Slavi Pantaleev <[email protected]>
- Loading branch information
1 parent
ad7f9ae
commit d6b8c40
Showing
4 changed files
with
59 additions
and
0 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,48 @@ | ||
# Matterbridge | ||
|
||
[Matterbridge](https://github.com/42wim/matterbridge) | ||
|
||
## Configuration | ||
|
||
To enable this service, add the following configuration to your `vars.yml` file and re-run the [installation](../installing.md) process: | ||
|
||
The configuration itself is documented [here](https://github.com/42wim/matterbridge/wiki/How-to-create-your-config) | ||
|
||
```yaml | ||
######################################################################## | ||
# # | ||
# matterbridge # | ||
# # | ||
######################################################################## | ||
|
||
matterbridge_enabled: true | ||
matterbridge_configuration_toml: | ||
accounts: | ||
- protocol: matrix | ||
identifier: someidentifier | ||
configuration: | ||
Server: "https://matrix.example.com" | ||
Login: "{{ matterbridge_matrix_user }}" | ||
Password: "{{ matterbridge_matrix_password }}" | ||
RemoteNickFormat: "{NICK}: " | ||
NoHomeServerSuffix: "false" | ||
|
||
gateways: | ||
- name: "A Gateway" | ||
enable: "true" | ||
channels: | ||
|
||
- type: inout | ||
account: matrix.someidentifier | ||
channel: "!roomA:matrix.example.com" | ||
|
||
- type: inout | ||
account: matrix.freifunk | ||
channel: "!roomB:matrix.example.com" | ||
|
||
######################################################################## | ||
# # | ||
# /matterbridge # | ||
# # | ||
######################################################################## | ||
``` |
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