Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 1.71 KB

matterbridge.md

File metadata and controls

48 lines (38 loc) · 1.71 KB

Matterbridge

Matterbridge

Configuration

To enable this service, add the following configuration to your vars.yml file and re-run the installation process:

The configuration itself is documented here

########################################################################
#                                                                      #
# 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                                                        #
#                                                                      #
########################################################################