Using nginx configuration similar to the following
location /some_prefix/ {
rewrite ^/some_prefix/(.*) /$1 break;
proxy_pass http://localhost:8100;
}
and using http://myserver/some_prefix as Server Url in extension's settings prevents the thing from working.
The server prints out Prepared room [id: ... blah blah ... ] upon trying to create a new session and nothing else.
The extension claims that a new session has been created successfully and copies the invite link.
Thirty seconds later Connection error: Websocket connection timed out. error is displayed.
Without /some_prefix and rewrite operation everything works as expected.
Using nginx configuration similar to the following
and using
http://myserver/some_prefixas Server Url in extension's settings prevents the thing from working.The server prints out
Prepared room [id: ... blah blah ... ]upon trying to create a new session and nothing else.The extension claims that a new session has been created successfully and copies the invite link.
Thirty seconds later
Connection error: Websocket connection timed out.error is displayed.Without /some_prefix and
rewriteoperation everything works as expected.