aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-10-13 01:12:58 +0200
committerache <ache@ache.one>2017-10-13 01:12:58 +0200
commit4e721f19804d7c6db622db0f0cafa7472ebaae68 (patch)
tree538132a42e551b941d368e8927f5e6667dedacc0
parentUse markdown-it instead of showdown (diff)
Use userland port
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index fc2b73e..08666ab 100644
--- a/app.js
+++ b/app.js
@@ -71,7 +71,7 @@ app.get('*', function(req, res) {
});
});
-var server = app.listen(80, function() {
+var server = app.listen(8090, function() {
var host = server.address().address;
var port = server.address().port;
console.log("[" + new Date() + "] > " + "App listening at http://%s:%s", host, port);