mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
thing (conf): Running on a port that make sense
This commit is contained in:
parent
8cd15af36c
commit
d6f7ad34f2
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ app.use('/*', function (req, res){
|
||||||
res.sendFile(__dirname + '/public/index.html')
|
res.sendFile(__dirname + '/public/index.html')
|
||||||
});
|
});
|
||||||
|
|
||||||
app.listen(3000, function(err){
|
app.listen(8334, function(err){
|
||||||
if(err){ console.log(err); }
|
if(err){ console.log(err); }
|
||||||
else{ console.log("Running at Port 3000"); }
|
else{ console.log("Running: http://127.0.0.1:8334"); }
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue