From 2275e8b23aa161885cb9bde6329861637ea64f8c Mon Sep 17 00:00:00 2001 From: Apher Date: Mon, 6 Jul 2026 10:09:11 +0000 Subject: [PATCH] simplify config variables --- src/config/redis.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/redis.config.js b/src/config/redis.config.js index 627c270..9504b71 100644 --- a/src/config/redis.config.js +++ b/src/config/redis.config.js @@ -1,4 +1,4 @@ module.exports = { - REDIS_HOST: process.env.REDIS_HOST, - REDIS_PORT: process.env.REDIS_PORT + REDIS_HOST: process.env.HOST, + REDIS_PORT: process.env.PORT }