HomePhorge
Diffusion kolab 0fe180f481ff

Get meet to work over the kolab.io proxy
0fe180f481ffUnpublished

Unpublished Commit ยท Learn More

Not On Permanent Ref: This commit is not an ancestor of any permanent ref.

Description

Get meet to work over the kolab.io proxy

The api has moved to /meetmedia/api (to not clash with /meet/ that we
use for kolab4 already.
The websocket for signaling is at /meetmedia/signaling.

The websocket is now a wss/https socket, because ws/http just silently
fails in the browser (some security mechanism?).

For nginx proxying the following is required (both pointing to
127.0.0.1:12443 on the local system)

location /meetmedia/api {
proxy_pass http://127.0.0.1:18006;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_no_cache 1;
proxy_cache_bypass 1;
}

location /meetmedia {
proxy_pass http://127.0.0.1:18006;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
}

Details

Provenance
mollekopfAuthored on Aug 26 2021, 10:56 PM
mollekopfPushed on Aug 26 2021, 11:05 PM
Parents
rK628055e78d89: Adjust .eslintrc
Branches
Unknown
Tags
Unknown

Event Timeline

machniak added inline comments.
/meet/server/server.js
358

Why bother with path here and the client if we can send it with the token.