I\'ve got a proxy running that only hits my node.js server for paths that being with /mysubdir How do I get socket.io configured for this situation?
/mysubdir
In my c
In my server I had to
var io = require('socket.io')(httpServer, {path: '/mysubdir/socket.io'})`
In my client I had to
and also
var socket = io.connect('http://www.example.com', {path: "/mysubdir/socket.io"});`