chore: doc update

This commit is contained in:
Tyler Stiene 2021-03-09 00:05:04 -05:00
parent 3267dc5f2d
commit 1ed35f6a39
2 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ mumble-discord-bridge
dist
bridge
.prof
cert.pem

View File

@ -27,7 +27,7 @@ Usage of ./mumble-discord-bridge:
-mumble-address string
MUMBLE_ADDRESS, mumble server address, example example.com, required
-mumble-channel string
MUMBLE_CHANNEL, mumble channel to start in, using '/' to seperate nested channels, optional
MUMBLE_CHANNEL, mumble channel to start in, using '/' to separate nested channels, optional
-mumble-disable-text
MUMBLE_DISABLE_TEXT, disable sending text to mumble, (default false)
-mumble-insecure
@ -93,6 +93,15 @@ Discord GID is a unique ID linked to one Discord Server, also called Guild. CID
Then you can get the GID by right-clicking your server and selecting Copy-ID. Similarly the CID can be found right clicking the voice channel and selecting Copy ID.
### Generating Mumble Client (Optional)
Optionally you can specify a client certificate for mumble [Mumble Certificates](https://wiki.mumble.info/wiki/Mumble_Certificates)
If you don't have a client certificate, you can generate one with this command:
``` bash
openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -keyout cert.pem -out cert.pem -subj "/CN=mumble-discord-bridge"
```
### Binary
Prebuilt binaries are available.