Skip to content

Commit

Permalink
[dist] Escape
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro committed Jun 15, 2012
1 parent 9ebcbd6 commit 0a07b8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
@@ -1,5 +1,5 @@
/**
* APPNAME
* "APPNAME"
* Default app for nodester
* @license MIT
*/
Expand Down Expand Up @@ -33,7 +33,7 @@ app.get('*', function(req,res){
res.end(':: not found ::');
});

var PORT = process.env['app_port'] || APPPORT;
var PORT = process.env['app_port'] || "APPPORT";

app.listen( PORT , function(){
console.log(':: nodester :: \n\nApp listening on port %s', this.address().port)
Expand Down

0 comments on commit 0a07b8a

Please sign in to comment.