jitsi-standup icon indicating copy to clipboard operation
jitsi-standup copied to clipboard

Blank page error, unable to connect to https://meet.jit.si !

Open cgabdel opened this issue 4 years ago • 1 comments

Hi WebSocket connection to 'wss://meet.jit.si/xmpp-websocket?room=Virtualistic' failed: _connect @ strophe.umd.js:5463

Any idea?

Regards.

cgabdel avatar May 20 '21 22:05 cgabdel

Looks like it's CORS issue. I tested it with self hosted jitsi-meet server, (e.g. domain name = example.com). Solved by adding the following to your nginx setting:

$vim /etc/nginx/sites-enabled/example.com.conf
    # BOSH
    location = /http-bind {
        ...
        add_header Access-Control-Allow-Headers 'Content-Type';
        add_header Access-Control-Allow-Methods 'GET, OPTIONS, POST';
        add_header Access-Control-Allow-Origin *;
    }
$/etc/init.d/nginx reload

shooding avatar Jun 24 '21 06:06 shooding