Update staging server authored by Roland Alton's avatar Roland Alton
......@@ -42,3 +42,23 @@ in `/etc/jitsi/meet/brand/fairmeeting.net/fairmeeting.net-config.js`
websocket: 'wss://staging.fairmeeting.net/xmpp-websocket',
```
same for `pro` - now committed to branch `staging` in `/etc/jitsi/meet` and branch `run` is for production.
in nginx we have added:
```
# colibri (JVB) websockets for jvb1 (which we do not have only on the staging server, else on run on bridges)
location ~ ^/colibri-ws/default-id/(.*) {
proxy_pass http://127.0.0.1:9090/colibri-ws/default-id/$1$is_args$args;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
tcp_nodelay on;
}
location = /_api/room-info {
proxy_pass http://localhost:5280/room-info?prefix=$prefix&$args;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
}
```