Commit ad6edfc484716a51ab6dab99721b5b1f59454b6d
1 parent
d3c04233b5
Exists in
master
APISERVER: perbaikan config port
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
api-server/index.js
... | ... | @@ -32,8 +32,8 @@ function needValidApikey(req, res, next) { |
32 | 32 | } |
33 | 33 | } |
34 | 34 | |
35 | -isConfigured() && app.listen(config.push_server.advice.port, function () { | |
36 | - logger.info('API-SERVER listening', {port: config.push_server.advice.port}); | |
35 | +isConfigured() && app.listen(config.apiserver.port, function () { | |
36 | + logger.info('API-SERVER listening', {port: config.apiserver.port}); | |
37 | 37 | }); |
38 | 38 | |
39 | 39 |