mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-28 07:40:59 +00:00
Use setting instead of hard-coding port
This commit is contained in:
parent
97566a6dc9
commit
a2ff9de0dd
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ module.exports =
|
|||
docstore:
|
||||
url: "http://#{process.env["DOCSTORE_HOST"] or "localhost"}:3016"
|
||||
web:
|
||||
url: "http://#{process.env["WEB_HOST"] or "localhost"}:3000"
|
||||
url: "http://#{process.env["WEB_HOST"] or "localhost"}:#{process.env['WEB_PORT'] or 3000}"
|
||||
user: "sharelatex"
|
||||
pass: "password"
|
||||
redis:
|
||||
|
|
Loading…
Reference in a new issue