http-bind responses with 404 (unknown host)
See original GitHub issueHi there.
I installed Jitsi-Meet on a server behind a NAT firewall. The publicIP:443 is translated to an nginx reverse proxy, who directs everything with the public jitsi hostname to the local jitsi nginx. I double checked the http routing. UDP10000 is translated directly to Jitsi.
I can access the URL in the app or in the webinterface and I am prompted for a conference name. If I enter a conference, the message “connection interrupted” appears. The logs show me that there are requests to http-bind:
"POST /http-bind?room=conftest HTTP/2.0" 404 393 "-" "okhttp/3.12.1"
If I access the http-bind page, I get the message: `404 Not Found
Whatever you were looking for is not here. It’s behind you.
Unknown host: 192.168.5.70`
This IP is the local IP of the jitsi server. How can I fix it? Whom asks http-bind to get an answer? And what should be the desired output? AFAIK is this a reponse of the prosody service, but cannot find any hints for this issue in its log.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top GitHub Comments
@saghul Damn it… the scales fell from my eyes. Solved it.
Jitsi expects to be called with the public/known host header:
Now, nginx is copying the ctx.domain.de host header into the request to the upstream/jitsi server. Nice.
Of course: