xasharma
Add this to the extend.php
in your flarum installation path:
(new Blomstra\Redis\Extend\Redis([
'host' => '127.0.0.1',
'password' => null,
'port' => 6379,
'database' => 1,
]))->disable(['session', 'queue'])
This needs to be added inside:
return [
// .. here
];
For most environments this should be enough. If you have installed redis on your vm, then this suffices. If you use a managed solution you will need to use the credentials provided to you.