diff options
Diffstat (limited to 'cluster/prod/app/jitsi/integration/meet')
-rw-r--r-- | cluster/prod/app/jitsi/integration/meet/config.js | 2 | ||||
-rw-r--r-- | cluster/prod/app/jitsi/integration/meet/nginx.conf | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/cluster/prod/app/jitsi/integration/meet/config.js b/cluster/prod/app/jitsi/integration/meet/config.js index 04414c3..97c5d4d 100644 --- a/cluster/prod/app/jitsi/integration/meet/config.js +++ b/cluster/prod/app/jitsi/integration/meet/config.js @@ -22,7 +22,7 @@ var config = { }, // BOSH URL. FIXME: use XEP-0156 to discover it. - bosh: '//rayonx.machine.deuxfleurs.fr/http-bind', + bosh: '//192.168.1.143/http-bind', // Websocket URL // websocket: 'wss://jitsi-meet.example.com/xmpp-websocket', diff --git a/cluster/prod/app/jitsi/integration/meet/nginx.conf b/cluster/prod/app/jitsi/integration/meet/nginx.conf index 16a63f9..07841e5 100644 --- a/cluster/prod/app/jitsi/integration/meet/nginx.conf +++ b/cluster/prod/app/jitsi/integration/meet/nginx.conf @@ -63,8 +63,9 @@ http { location /http-bind { proxy_pass http://jitsi-xmpp:5280/http-bind; - proxy_set_header X-Forwarded-For \$remote_addr; - proxy_set_header Host \$http_host; + proxy_set_header X-Forwarded-For $remote_addr; + #proxy_set_header Host $http_host; + proxy_set_header Host jitsi-bosh; } |