-
Beta Was this translation helpful? Give feedback.
Answered by
nioc
Jul 22, 2024
Replies: 1 comment 3 replies
-
Hello @anrj. First, you don't have to build your own docker image, it is hosted on docker hub. For your issue, I think this variable is invalid: |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
anrj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @anrj.
First, you don't have to build your own docker image, it is hosted on docker hub.
For your issue, I think this variable is invalid:
ENV XMPP_WS=http://xmpp.anrj.site:5281/xmpp-websocket
Because Prosody uses port 5281 for https (Bosh) but you set the http scheme (which is listened on 5280), can you try
ENV XMPP_WS=https://xmpp.anrj.site:5281/xmpp-websocket
Or with http/5280 if it does not work:
ENV XMPP_WS=http://xmpp.anrj.site:5280/xmpp-websocket