mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
fix redis config (#895)
* fix redis config when using redis on host machine without password auth
This commit is contained in:
parent
acf603993b
commit
35b414b624
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ settings =
|
|||
web: redisConfig =
|
||||
host: process.env["SHARELATEX_REDIS_HOST"] or "dockerhost"
|
||||
port: process.env["SHARELATEX_REDIS_PORT"] or "6379"
|
||||
password: process.env["SHARELATEX_REDIS_PASS"] or ""
|
||||
password: process.env["SHARELATEX_REDIS_PASS"] or undefined
|
||||
key_schema:
|
||||
# document-updater
|
||||
blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
|
||||
|
|
Loading…
Reference in a new issue