Redis Configuration
Steps to Change Redis Configuration
You can set host or port by changing config.json file.
Navigate and open '/engine/system/redis/config/config.json'
Enter redis URL and save file
{
"url": "redis://alice:foobared@awesome.redis.server:6380"
}
GeneralURL format is 'redis[s]://[[username][:password]@][host][:port][/db-number]'
You can set addtional options like discrete parameters, UNIX sockets, and TLS. Please visit below link for more information.
https://github.com/redis/node-redis/blob/HEAD/docs/client-configuration.md
Last updated