diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-11-01 19:17:25 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-11-01 19:17:25 +0100 |
commit | d16b5172ae95f2389084ba2a301088358605771f (patch) | |
tree | d0e193bf10b4291ca5486432a4953b1748bc17ba /server.js | |
parent | b1233aa856d9b7cd18179c96a0a4856d3ab3b319 (diff) | |
download | PeerTube-d16b5172ae95f2389084ba2a301088358605771f.tar.gz PeerTube-d16b5172ae95f2389084ba2a301088358605771f.tar.zst PeerTube-d16b5172ae95f2389084ba2a301088358605771f.zip |
Server: use constants to get port configuration
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -40,9 +40,6 @@ const mongoose = require('mongoose') | |||
40 | const routes = require('./server/controllers') | 40 | const routes = require('./server/controllers') |
41 | const Request = mongoose.model('Request') | 41 | const Request = mongoose.model('Request') |
42 | 42 | ||
43 | // Get configurations | ||
44 | const port = config.get('listen.port') | ||
45 | |||
46 | // ----------- Command line ----------- | 43 | // ----------- Command line ----------- |
47 | 44 | ||
48 | // ----------- App ----------- | 45 | // ----------- App ----------- |
@@ -129,6 +126,7 @@ app.use(function (err, req, res, next) { | |||
129 | res.sendStatus(err.status || 500) | 126 | res.sendStatus(err.status || 500) |
130 | }) | 127 | }) |
131 | 128 | ||
129 | const port = constants.CONFIG.LISTEN.PORT | ||
132 | installer.installApplication(function (err) { | 130 | installer.installApplication(function (err) { |
133 | if (err) throw err | 131 | if (err) throw err |
134 | 132 | ||