We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I run the demo and everything is fine. when I modify the server.js code:
var http = require('http'); var server = http.createServer(app); var webRTC = require('webrtc.io').listen(server); server.listen(8899);
to
var fs = require('fs'); var options = { key: fs.readFileSync(__dirname +'/key.pem','utf8'), cert: fs.readFileSync(__dirname +'/cert.pem','utf8') }; var https = require('https'); var httpsServer = https.createServer(options, app); var webRTC = require('webrtc.io').listen(httpsServer); httpsServer.listen(8899)
when open the htpps://xxxhost:8899/ ,there cannot find other user ? anything I have forgotten? Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I run the demo and everything is fine.
when I modify the server.js code:
to
when open the htpps://xxxhost:8899/ ,there cannot find other user ? anything I have forgotten? Thank you!
The text was updated successfully, but these errors were encountered: