mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 17:55:05 +00:00
Use port 3015 by default
This commit is contained in:
parent
c15df4c2aa
commit
ba2c4768d0
2 changed files with 2 additions and 2 deletions
|
@ -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?
|
||||
|
|
|
@ -3,5 +3,5 @@ module.exports =
|
|||
url: 'mongodb://127.0.0.1/sharelatex'
|
||||
internal:
|
||||
trackchanges:
|
||||
port: 3014
|
||||
port: 3015
|
||||
host: "localhost"
|
||||
|
|
Loading…
Reference in a new issue