Skip to content

Commit

Permalink
Commit for irc.nodester.com
Browse files Browse the repository at this point in the history
  • Loading branch information
microp11 committed Apr 20, 2012
1 parent 81d2d47 commit 4f87c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irc.js
Expand Up @@ -68,7 +68,7 @@ app.get("/", function (req, res, next) {
res.render("./public/index.html");
});

app.listen(process.env.C9_PORT || process.env['app_port'] || 17039);
app.listen(process.env.C9_PORT || process.env['app_port'] || 80);
console.log("IRC#nodester is running on port %d in %s mode", app.address().port, app.settings.env);

/*
Expand Down Expand Up @@ -145,7 +145,7 @@ var appProcessor = function (action, client, msg, socket) {
}

var io = sio.listen(app);
//io.set('log level', 0);
io.set('log level', 0);
io.sockets.on("connection", function (socket) {
var proxy = new Proxy(socket, appProcessor);
});

0 comments on commit 4f87c75

Please sign in to comment.