diff --git a/src/database/redis.js b/src/database/redis.js index acc2541af6..a19c207993 100644 --- a/src/database/redis.js +++ b/src/database/redis.js @@ -80,6 +80,8 @@ redisModule.connect = function (options) { options.auth_pass = nconf.get('redis:password'); } + options = _.deepExtend(options, nconf.get('redis:options') || {}); + if (redis_socket_or_host && redis_socket_or_host.indexOf('/') >= 0) { /* If redis.host contains a path name character, use the unix dom sock connection. ie, /tmp/redis.sock */ cxn = redis.createClient(nconf.get('redis:host'), options);