mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #59 from overleaf/msm-fix-web-host-lookup
Fixed WEB_HOST lookup in settings
This commit is contained in:
commit
ba5d42d567
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ module.exports =
|
|||
docstore:
|
||||
url: "http://#{process.env["DOCSTORE_HOST"] or "localhost"}:3016"
|
||||
web:
|
||||
url: "http://#{process.env["WEB_API_HOST"] or "localhost"}:#{process.env['WEB_API_PORT'] or 3000}"
|
||||
url: "http://#{process.env['WEB_API_HOST'] or process.env['WEB_HOST'] or "localhost"}:#{process.env['WEB_API_PORT'] or process.env['WEB_PORT'] or 3000}"
|
||||
user: "sharelatex"
|
||||
pass: "password"
|
||||
redis:
|
||||
|
|
Loading…
Reference in a new issue