mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-13 13:49:19 +08:00
enabled https
This commit is contained in:
parent
a6621c3072
commit
6774c1c5e5
14
server.js
14
server.js
@ -9,11 +9,11 @@ var twilio = require("twilio")(twillioAccountSID, twillioAuthToken);
|
||||
var express = require("express");
|
||||
var app = express();
|
||||
const fs = require('fs');
|
||||
// var http = require("https").createServer({
|
||||
// key: fs.readFileSync('/Users/khushjammu/certs/privkey.pem'),
|
||||
// cert: fs.readFileSync('/Users/khushjammu/certs/cert.pem')
|
||||
// }, app);
|
||||
var http = require("http").createServer(app);
|
||||
var http = require("https").createServer({
|
||||
key: fs.readFileSync('/Users/khushjammu/certs/privkey.pem'),
|
||||
cert: fs.readFileSync('/Users/khushjammu/certs/cert.pem')
|
||||
}, app);
|
||||
// var http = require("http").createServer(app);
|
||||
var io = require("socket.io")(http);
|
||||
var path = require("path");
|
||||
var public = path.join(__dirname, "public");
|
||||
@ -92,7 +92,7 @@ io.on("connection", function (socket) {
|
||||
// Existing callers initiates call with user
|
||||
}
|
||||
});
|
||||
} else if (numClients < 3) {
|
||||
} else if (numClients < 4) {
|
||||
socket.join(room);
|
||||
logIt("Connected clients", room)
|
||||
for (var clientId in clients.sockets) {
|
||||
@ -145,7 +145,7 @@ io.on("connection", function (socket) {
|
||||
});
|
||||
|
||||
// Listen for Heroku port, otherwise just use 3000
|
||||
var port = process.env.PORT || 3000;
|
||||
var port = process.env.PORT || 443;
|
||||
http.listen(port, function () {
|
||||
console.log("http://localhost:" + port);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user