Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Screen sharing #5

Open
gymnae opened this issue Apr 5, 2016 · 3 comments
Open

Screen sharing #5

gymnae opened this issue Apr 5, 2016 · 3 comments

Comments

@gymnae
Copy link

gymnae commented Apr 5, 2016

Hey there,
great container so far, I'm even getting it to work with let'sencrypt ssl proxy companion for a nginx proxy - Working as in people can join a channel, but voice and audio are not working.

I'm running the image on a CoreOS bare-metal host. To make it work, I adjust the sites-enabled config to not load in additional SSL certs and not listen on 443, as the ssl proxy takes care of that. I tried to pinpoint is this is the source of the problem by forwarding 443 to the IP of the server and connect to that, but it's the same issue

The desired feature doesn't work, which works with the jitsi-meet test on their official server:
The screen sharing plugin won't install or work.
Any idea why that may be?

In short: The container starts, letsencrypt certs are generated and the connection is SSL, people can join and create channels, but there is no audio/video, etherpad or screen sharing

Cheers

@erickeller
Copy link

same issue here. I just run it locally and use iptable to forward the hits to the container:

#!/bin/sh
TARGET_IP=172.17.0.2
INTERFACE=wlo1
test -z $1 || TARGET_IP=$1
test -z $2 || INTERFACE=$2
iptables -t nat -A PREROUTING -i ${INTERFACE} -p tcp --dport 5347 -j DNAT --to ${TARGET_IP}:5347
iptables -t nat -A PREROUTING -i ${INTERFACE} -p tcp --dport 80 -j DNAT --to ${TARGET_IP}:80
iptables -t nat -A PREROUTING -i ${INTERFACE} -p tcp --dport 443 -j DNAT --to ${TARGET_IP}:443
iptables -t nat -A PREROUTING -i ${INTERFACE} -p udp --dport 10000:10010 -j DNAT --to ${TARGET_IP}:10000-10010

I can join the room but no audio, no video...

@lokeshh
Copy link

lokeshh commented Jun 27, 2017

Same here... no audio/video

@camilotorres97
Copy link

Same problem here, someone fixed it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants