mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Parse redis cert on load
This commit is contained in:
parent
45fcde8ebc
commit
20df5c6212
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ const createRSSRefreshFeedQueue = (): Queue | undefined => {
|
|||
if (env.redis.url?.startsWith('rediss://') && env.redis.cert) {
|
||||
return {
|
||||
tls: {
|
||||
ca: env.redis.cert?.replace(/\\n/g, '\n'),
|
||||
ca: env.redis.cert,
|
||||
rejectUnauthorized: false,
|
||||
},
|
||||
maxRetriesPerRequest: null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue