8080 instead of 8000 default listen port

This commit is contained in:
fenwick67 2024-10-13 11:27:29 -04:00
parent f1b36dc8d4
commit 82e5f7f838
1 changed files with 2 additions and 2 deletions

View File

@ -174,6 +174,6 @@ app.get('/actor', logger, function(req,res){
res.json(j); res.json(j);
}) })
app.listen(process.env.PORT || 8000,function(){ app.listen(process.env.PORT || 8080,function(){
console.log('Server started, listening on '+(process.env.PORT || 8000)); console.log('Mastofeed started, listening on '+(process.env.PORT || 8080));
}); });