LINXD-222: Added log for request; Accept request withour Cert and unauthorized

This commit is contained in:
Sergiu Toma 2022-09-19 23:35:14 +03:00
parent a2c878f91c
commit 287693ec65

10
app.js
View File

@ -47,7 +47,9 @@ app.use('/sfu', express.static(path.join(__dirname, 'public')))
// SSL cert for HTTPS access
const options = {
key: fs.readFileSync('./server/ssl/key.pem', 'utf-8'),
cert: fs.readFileSync('./server/ssl/cert.pem', 'utf-8')
cert: fs.readFileSync('./server/ssl/cert.pem', 'utf-8'),
requestCert: false,
rejectUnauthorized: false
}
const httpsServer = https.createServer(options, app)
@ -57,7 +59,11 @@ httpsServer.listen(process.env.PORT, () => {
})
const io = new Server(httpsServer, {
allowEIO3: true
allowEIO3: true,
allowRequest: (req) => {
console.log('req', req);
return true;
}
});
// socket.io namespace (could represent a room?)