Skip to content

Commit

Permalink
Fixing redis password configuration (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
brightonsbox authored Nov 20, 2023
1 parent 00a175b commit 09f792e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
redis: {
host: get('REDIS_HOST', 'localhost', requiredInProduction),
port: parseInt(process.env.REDIS_PORT, 10) || 6379,
password: process.env.REDIS_AUTH_TOKEN,
password: process.env.REDIS_PASSWORD,
tls_enabled: get('REDIS_TLS_ENABLED', 'false'),
},
session: {
Expand Down

0 comments on commit 09f792e

Please sign in to comment.