From cc6ce2cf13d1e2f1621941b0c5dd27f8d34a826a Mon Sep 17 00:00:00 2001 From: Wim Date: Tue, 20 Oct 2020 21:55:13 +0200 Subject: [PATCH] Created Section Mumble (basic) (markdown) --- Section-Mumble-(basic).md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Section-Mumble-(basic).md diff --git a/Section-Mumble-(basic).md b/Section-Mumble-(basic).md new file mode 100644 index 0000000..ae3a937 --- /dev/null +++ b/Section-Mumble-(basic).md @@ -0,0 +1,33 @@ + +```toml +[mumble.mymumble] +# Host and port of your Mumble server +Server = "mumble.yourdomain.me:64738" +Nick = "matterbridge" +# Some servers require a password +# OPTIONAL (default empty) +Password = "serverpasswordhere" +# Self-signed TLS client certificate + private key used to connect to +# Mumble. This is required if you want to register the matterbridge +# user on your Mumble server, so its nick becomes reserved. +# You can generate a keypair using e.g. +# +# openssl req -x509 -newkey rsa:2048 -nodes -days 10000 \ +# -keyout mumble.key -out mumble.crt +# +# To actually register the matterbridege user, connect to Mumble as an +# admin, right click on the user and click "Register". +# +# OPTIONAL (default empty) +TLSClientCertificate="mumble.crt" +TLSClientKey="mumble.key" + +# TLS CA certificate used to validate the Mumble server. +# OPTIONAL (defaults to Go system CA) +TLSCACertificate=mumble-ca.crt + +# Enable to not verify the certificate on your Mumble server. +# e.g. when using selfsigned certificates +# OPTIONAL (default false) +SkipTLSVerify=false +``` \ No newline at end of file