muaz-khan / WebRTC-Scalable-Broadcast

This module simply initializes socket.io and configures it in a way that single broadcast can be relayed over unlimited users without any bandwidth/CPU usage issues. Everything happens peer-to-peer!
https://rtcmulticonnection.herokuapp.com/demos/Scalable-Broadcast.html
532 stars 142 forks source link

This used to work for me? #27

Open rayj00 opened 8 years ago

rayj00 commented 8 years ago

I was playing with your Scalable Broadcast back in May and it was kind of working. At least I was able to start a presenter and add viewers and actually see the video. But I stopped looking at it for various reasons. Now I am looking at v3. Or trying. I cannot get anything to work. After install, when I browse to "IP":9001 I get browser error on FireFox and Chrome...saying cannot access. Have I forgotten to install something? I have sent Muaz an email, but I know Muaz is very busy so if someone else can assist?

Thanks,

Ray

muaz-khan commented 8 years ago

Sorry, HTTPs was disabled because 99% of the uses donno how to bypass/use fake-SSL:

// replace above line with this:
var isUseHTTPs = !(!!process.env.PORT || !!process.env.IP);

Now https://localhost:9001/ should work. It will become a fake-HTTPs which means that you MUST have to click Proceed Anyway link to bypass SSL-error-notification.

rayj00 commented 8 years ago

Thank you Muaz for the quick response. Will make the change and see what happens.

Ray