diff options
author | Wim <wim@42.be> | 2016-07-11 23:22:56 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2016-07-11 23:22:56 +0200 |
commit | ced371bece6bcdadba3f61bb70f5f5aa24bc3c23 (patch) | |
tree | 87f6df50e5a6d4428d3fbbfb2f197575c6b86eda /README.md | |
parent | a87cac1982c0869fca161b0c417da3cd13742ce9 (diff) | |
download | matterbridge-msglm-ced371bece6bcdadba3f61bb70f5f5aa24bc3c23.tar.gz matterbridge-msglm-ced371bece6bcdadba3f61bb70f5f5aa24bc3c23.tar.bz2 matterbridge-msglm-ced371bece6bcdadba3f61bb70f5f5aa24bc3c23.zip |
Add port to BindAddress
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -31,8 +31,15 @@ matterbridge 3) Now you can run matterbridge. ``` -Usage of matterbridge: - -conf="matterbridge.conf": config file +Usage of ./matterbridge: + -conf string + config file (default "matterbridge.conf") + -debug + enable debug + -plus + running using API instead of webhooks + -version + show version ``` Matterbridge will: @@ -66,11 +73,11 @@ IgnoreNicks="ircspammer1 ircspammer2" [mattermost] #url is your incoming webhook url (account settings - integrations - incoming webhooks) url="http://mattermost.yourdomain.com/hooks/incomingwebhookkey" -#port the bridge webserver will listen on -port=9999 -#address the webserver will bind to -BindAddress="0.0.0.0" -showjoinpart=true #show irc users joining and parting +#address the webserver (which receives the outgoing webhook from mattermost) will listen on +#(account settings - integrations - outgoing webhooks) +BindAddress="0.0.0.0:9999" +#show irc users joining and parting +showjoinpart=true #the token you get from the outgoing webhook in mattermost. Token="outgoingwebhooktoken1" #disable certificate checking (selfsigned certificates) |