ejabberd: bosh port moved to 5443

In ejabberd 18.09-1, the default BOSH port is changed from 5280 to
5443. Update ejabberd diagnostics and the jwchat-plinth apache conf,
which is used by JSXC.

Fixes #1398.

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
This commit is contained in:
James Valleroy 2018-10-28 12:12:48 -04:00 committed by Joseph Nuthalapati
parent d67c5ea173
commit a9efa2f3a3
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Proxy for BOSH server
ProxyPass /bosh/ http://localhost:5280/bosh/
ProxyPassReverse /bosh/ http://localhost:5280/bosh/
<Proxy http://localhost:5280/bosh/*>
ProxyPass /bosh/ http://localhost:5443/bosh/
ProxyPassReverse /bosh/ http://localhost:5443/bosh/
<Proxy http://localhost:5443/bosh/*>
Require all granted
</Proxy>

View File

@ -178,8 +178,8 @@ def diagnose():
results.append(action_utils.diagnose_port_listening(5222, 'tcp6'))
results.append(action_utils.diagnose_port_listening(5269, 'tcp4'))
results.append(action_utils.diagnose_port_listening(5269, 'tcp6'))
results.append(action_utils.diagnose_port_listening(5280, 'tcp4'))
results.append(action_utils.diagnose_port_listening(5280, 'tcp6'))
results.append(action_utils.diagnose_port_listening(5443, 'tcp4'))
results.append(action_utils.diagnose_port_listening(5443, 'tcp6'))
results.extend(action_utils.diagnose_url_on_all('http://{host}/bosh/'))
return results