mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -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 =
|
web: redisConfig =
|
||||||
host: process.env["SHARELATEX_REDIS_HOST"] or "dockerhost"
|
host: process.env["SHARELATEX_REDIS_HOST"] or "dockerhost"
|
||||||
port: process.env["SHARELATEX_REDIS_PORT"] or "6379"
|
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:
|
key_schema:
|
||||||
# document-updater
|
# document-updater
|
||||||
blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
|
blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
|
||||||
|
|
Loading…
Reference in a new issue