There is a server Node.js + Express
var app = require('express')(); var fs = require('fs'); var options = { key: fs.readFileSync('private.key.pem'), cert: fs.readFileSync('cert.crt.pem') }; var https = require('https').Server(app); var io = require('socket.io')(https); https.listen(3000, function() { console.log('Server started on port 3000'); }); io.on('connection', function(socket){ console.log('Connected....'); }); When connecting via Https, it gives an error: SSL_ERROR_NO_CYPHER_OVERLAP (This is Firefox)
Like and indicated certificates in the .pem format
Still not working
Apache server
I am connected on the domain through the 3000th port