From 82e5f7f8383ad5afe959c48ea23d0b39ff9a7ce7 Mon Sep 17 00:00:00 2001 From: fenwick67 Date: Sun, 13 Oct 2024 11:27:29 -0400 Subject: [PATCH] 8080 instead of 8000 default listen port --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 238fb0b..e9034c8 100644 --- a/index.js +++ b/index.js @@ -174,6 +174,6 @@ app.get('/actor', logger, function(req,res){ res.json(j); }) -app.listen(process.env.PORT || 8000,function(){ - console.log('Server started, listening on '+(process.env.PORT || 8000)); +app.listen(process.env.PORT || 8080,function(){ + console.log('Mastofeed started, listening on '+(process.env.PORT || 8080)); });