diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-12-13 04:32:57 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-12-13 04:32:57 +0100 |
| commit | 55067d74fb2a472aa5de9c0c917d1219821b81fe (patch) | |
| tree | f04d470a012bcc28e16c4fd37795763d5631bd02 /bucky/app/index.js | |
| parent | 6c87173b16d0cc2b5f62ee7b47830f7d16b152e8 (diff) | |
thread zero check
Diffstat (limited to 'bucky/app/index.js')
| -rw-r--r-- | bucky/app/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bucky/app/index.js b/bucky/app/index.js index efa5fdd..c445536 100644 --- a/bucky/app/index.js +++ b/bucky/app/index.js @@ -51,7 +51,7 @@ site.init = function(){ app.use(passport.session()) server = http.createServer(app).listen(process.env.PORT || 5000, function () { - console.log('Bucky listening at http://5.k:%s', server.address().port) + console.log('Bucky listening at http://' + process.env.HOST_NAME + ':%s', server.address().port) }) upload.init({ |
