default port to 3042

This commit is contained in:
Henry Oswald 2016-02-04 13:46:59 +00:00
parent 35e0eafc95
commit 7f74263cdc

View file

@ -39,6 +39,6 @@ app.get '*', (req, res)->
res.send 404
host = Settings.internal?.notifications?.host || "localhost"
port = Settings.internal?.notifications?.port || 3041
port = Settings.internal?.notifications?.port || 3042
app.listen port, host, ->
logger.info "notifications starting up, listening on #{host}:#{port}"