Add support for redis authentication (#420)

* Add support for redis authentication (Update redpool dependency)
 - Add configuration option `redisPassword`

* Reference `redisPassword` in nitter.conf
This commit is contained in:
Vítor 2021-08-06 19:53:16 -03:00 committed by GitHub
commit fd384ff33e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 2 deletions

View file

@ -30,7 +30,7 @@ proc migrate*(key, match: string) {.async.} =
proc initRedisPool*(cfg: Config) {.async.} =
try:
pool = await newRedisPool(cfg.redisConns, maxConns=cfg.redisMaxConns,
host=cfg.redisHost, port=cfg.redisPort)
host=cfg.redisHost, port=cfg.redisPort, password=cfg.redisPassword)
await migrate("snappyRss", "rss:*")
await migrate("oldFrosty", "*")