Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

Viewing file on branch master

1# Mumble
2
3- Status: ???
4- Maintainers: ???
5- Features: ???
6
7## Configuration
8
9**Basic configuration example:**
10
11```toml
12[mumble.mymumble]
13Server = "mumble.yourdomain.me:64738"
14Nick = "matterbridge"
15# Use `""` if the server doesn't have a password
16Password = "serverpasswordhere"
17# Uncomment for client certificates
18#TLSClientCertificate="mumble.crt"
19#TLSClientKey="mumble.key"
20# Optional custom TLS certificate
21TLSCACertificate=mumble-ca.crt
22```
23
24## FAQ
25
26### How to generate a client certificate to reserve a nickname?
27
28Self-signed TLS client certificate + private key used to connect to
29Mumble. This is required if you want to register the matterbridge
30user on your Mumble server, so its nick becomes reserved.
31You can generate a keypair using e.g.
32
33 openssl req -x509 -newkey rsa:2048 -nodes -days 10000 \
34 -keyout mumble.key -out mumble.crt
35
36To actually register the matterbridege user, connect to Mumble as an
37admin, right click on the user and click "Register".
38