Use port 3015 by default

This commit is contained in:
James Allen 2014-03-03 13:31:10 +00:00
parent c15df4c2aa
commit ba2c4768d0
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ app.use (error, req, res, next) ->
logger.error err: error, "an internal error occured"
res.send 500
port = Settings.internal?.trackchanges?.port or 3014
port = Settings.internal?.trackchanges?.port or 3015
host = Settings.internal?.trackchanges?.host or "localhost"
app.listen port, host, (error) ->
if error?

View file

@ -3,5 +3,5 @@ module.exports =
url: 'mongodb://127.0.0.1/sharelatex'
internal:
trackchanges:
port: 3014
port: 3015
host: "localhost"