I have two Express.js apps running on my server.
A plain vanilla app called "main-app" and another that uses Socket.IO called "socket-app".
I have "main-app" running at "mydomain.com" & "socket-app" running on a subdomain at "socket.mydomain.com"
I am routing requests to the socket-app via Express's built-in vhost middleware.
-- inside main-app.js --
var express = require('express');
var app = module.exports = express.createServer();
app.use(express.vhost('socket.mydomain', require('./socket-app/app.js')));
app.listen(8080, function(){
console.log("Express server listening on port %d in %s mode");
});
This works fine and I can see my socket-app running on port 8080 at socket.mydomain
However, there seems to be a problem with websockets timing out and not receiving the "upgrade" event when running a Socket.IO app through vhost as discussed here.
So my question is how can I pipe this "upgrade" event from my main-app to my socket-app so all connected sockets can hear when someone connects & disconnects?
I've tried emitting the "upgrade" event from within "main-app" but it doesn't appear to be working.
app.on('upgrade', function(req, socket) {
socket.emit('upgrade', app);
});
What am I missing here?