mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
default port to 3042
This commit is contained in:
parent
35e0eafc95
commit
7f74263cdc
1 changed files with 1 additions and 1 deletions
|
@ -39,6 +39,6 @@ app.get '*', (req, res)->
|
||||||
res.send 404
|
res.send 404
|
||||||
|
|
||||||
host = Settings.internal?.notifications?.host || "localhost"
|
host = Settings.internal?.notifications?.host || "localhost"
|
||||||
port = Settings.internal?.notifications?.port || 3041
|
port = Settings.internal?.notifications?.port || 3042
|
||||||
app.listen port, host, ->
|
app.listen port, host, ->
|
||||||
logger.info "notifications starting up, listening on #{host}:#{port}"
|
logger.info "notifications starting up, listening on #{host}:#{port}"
|
||||||
|
|
Loading…
Reference in a new issue