diff options
author | Wim <wim@42.be> | 2017-11-24 23:35:25 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-11-24 23:35:25 +0100 |
commit | dcda7f7b8c3ddcfcb551d43474831c1c9d7a128d (patch) | |
tree | c0a717f8e084dd981724904900fa0067fba463ac | |
parent | e0cbb69a4fa14f5f38417b19904a8b412deb2458 (diff) | |
download | matterbridge-msglm-dcda7f7b8c3ddcfcb551d43474831c1c9d7a128d.tar.gz matterbridge-msglm-dcda7f7b8c3ddcfcb551d43474831c1c9d7a128d.tar.bz2 matterbridge-msglm-dcda7f7b8c3ddcfcb551d43474831c1c9d7a128d.zip |
Add documentation about MediaServerUpload and MediaServerDownload
-rw-r--r-- | matterbridge.toml.sample | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 7552d395..17f6ef42 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -843,6 +843,22 @@ RemoteNickFormat="[{PROTOCOL}] <{NICK}> " #OPTIONAL (default false) StripNick=false + +#MediaServerUpload and MediaServerDownload are used for uploading images/files/video to +#a remote "mediaserver" (a webserver like caddy for example). +#When configured images/files uploaded on bridges like mattermost,slack, telegram will be downloaded +#and uploaded again to MediaServerUpload URL +#The MediaServerDownload will be used so that bridges without native uploading support: +#gitter, irc and xmpp will be shown links to the files on MediaServerDownload +# +#More information https://github.com/42wim/matterbridge/wiki/Mediaserver-setup-%5Badvanced%5D +#OPTIONAL (default empty) +MediaServerUpload="https://user:pass@yourserver.com/upload" +#OPTIONAL (default empty) +MediaServerDownload="https://youserver.com/download" + + + ################################################################### #Gateway configuration ################################################################### |