Skip to content

Commit

Permalink
Merge pull request #8 from morrismatts/master
Browse files Browse the repository at this point in the history
Minor tweak to server.js to fix #6
  • Loading branch information
majek committed Jan 27, 2014
2 parents 3e8ecdf + 10a0c46 commit e4eb146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sockjs-express3/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var server = http.createServer(app);
service.installHandlers(server, {prefix:'/multiplex'});

console.log(' [*] Listening on 0.0.0.0:9999' );
app.listen(9999, '0.0.0.0');
server.listen(9999, '0.0.0.0');

app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
Expand Down

0 comments on commit e4eb146

Please sign in to comment.