I'd like to implement ssl in all of my projects. One of them is using socket.io.
My code to create the socket:
var server = require('http'); var app = server.createServer(function(request, response) { response.end(); }); var io = require('socket.io').listen(app); app.listen(8000); I can't bind node.js / socket.io to ssl port cause it's already in use by my webserver (cherokee). Therefore i can't serve the client using https.
Any ideas how to solve this problem?