Skip to content

Commit

Permalink
[minor] Make samples/server.js listen on 8000
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Nov 17, 2010
1 parent 29bc24f commit d084ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/server.js
Expand Up @@ -5,7 +5,7 @@ http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('hello, i know nodejitsu.')
res.end();
}).listen(80);
}).listen(8000);

/* server started */
sys.puts('> hello world running on port 80');

0 comments on commit d084ad1

Please sign in to comment.