jitsi-standup
jitsi-standup copied to clipboard
Blank page error, unable to connect to https://meet.jit.si !
Hi WebSocket connection to 'wss://meet.jit.si/xmpp-websocket?room=Virtualistic' failed: _connect @ strophe.umd.js:5463
Any idea?
Regards.
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