mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
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:
parent
d67c5ea173
commit
a9efa2f3a3
@ -1,6 +1,6 @@
|
|||||||
# Proxy for BOSH server
|
# Proxy for BOSH server
|
||||||
ProxyPass /bosh/ http://localhost:5280/bosh/
|
ProxyPass /bosh/ http://localhost:5443/bosh/
|
||||||
ProxyPassReverse /bosh/ http://localhost:5280/bosh/
|
ProxyPassReverse /bosh/ http://localhost:5443/bosh/
|
||||||
<Proxy http://localhost:5280/bosh/*>
|
<Proxy http://localhost:5443/bosh/*>
|
||||||
Require all granted
|
Require all granted
|
||||||
</Proxy>
|
</Proxy>
|
||||||
|
|||||||
@ -178,8 +178,8 @@ def diagnose():
|
|||||||
results.append(action_utils.diagnose_port_listening(5222, 'tcp6'))
|
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, 'tcp4'))
|
||||||
results.append(action_utils.diagnose_port_listening(5269, 'tcp6'))
|
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(5443, 'tcp4'))
|
||||||
results.append(action_utils.diagnose_port_listening(5280, 'tcp6'))
|
results.append(action_utils.diagnose_port_listening(5443, 'tcp6'))
|
||||||
results.extend(action_utils.diagnose_url_on_all('http://{host}/bosh/'))
|
results.extend(action_utils.diagnose_url_on_all('http://{host}/bosh/'))
|
||||||
|
|
||||||
return results
|
return results
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user