I'm trying to get socket.io running with my SSL certificate however, it will not connect.

I based my code off the chat example:

var https = require('https');
var fs = require('fs');
/**
 * Bootstrap app.
 */
var sys = require('sys')
require.paths.unshift(__dirname + '/../../lib/');

/**
* Module dependencies.
*/

var express = require('express')
  , stylus = require('stylus')
  , nib = require('nib')
  , sio = require('socket.io');

/**
 * App.
 */
var privateKey = fs.readFileSync('../key').toString();
var certificate = fs.readFileSync('../crt').toString();
var ca = fs.readFileSync('../intermediate.crt').toString();

var app = express.createServer({key:privateKey,cert:certificate,ca:ca });


/**
 * App configuration.
 */

...

/**
 * App routes.
 */

app.get('/', function (req, res) {
  res.render('index', { layout: false });
});

/**
 * App listen.
 */

app.listen(443, function () {
  var addr = app.address();
  console.log('   app listening on http://' + addr.address + ':' + addr.port);
});

/**
 * Socket.IO server (single process only)
 */

var io = sio.listen(app,{key:privateKey,cert:certificate,ca:ca});
...

If I remove the SSL code it runs fine, however with it I get a request to http://domain.com/socket.io/1/?t=1309967919512

note its not trying https, which causes it to fail.

I'm testing on chrome, since it is the target browser for this application.

I appologize if this is a simple question, I'm a node/socket.io newb.

Thanks!

link|improve this question
Is your client trying to connect to a 'wss://' prefixed URI. – kanaka Jul 6 '11 at 16:29
nope it doesnt get there, it makes the request to domain.com/socket.io/1/?t=1309967919512 then dies. – Beyond Jul 6 '11 at 16:40
How are you specifying the address to connect to? "domain.com" sounds like a placeholder in the socket.io client-side library. Can you post your client Javascript code that you are using to connect? – kanaka Jul 6 '11 at 16:56
the project is on github: github.com/BCCasino/BCCasino – Beyond Jul 6 '11 at 17:54
basically becasue its node.js socket.io magically handles the client side stuff, all you do is run socket.connect – Beyond Jul 6 '11 at 17:54
show 1 more comment
feedback

1 Answer

up vote 11 down vote accepted

Use a secure URL for your initial connection, i.e. instead of "http://" use "https://". If the WebSocket transport is chosen, then Socket.IO should automatically use "wss://" (SSL) for the WebSocket connection too.

Update:

You can also try creating the connection using the 'secure' option:

var socket = io.connect('https://localhost', {secure: true});
link|improve this answer
we do this. we goto https : // www.thebitcoinwheel.com and it still makes a request to http automatically, this is something with the socket.io code and is the point of the question. – Beyond Jul 6 '11 at 18:38
secure:true did it, thanks kanaka! – Beyond Jul 7 '11 at 2:16
You guys saved my life! I could not find those options on the documentation. – Paulo Cesar May 23 at 19:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.