From 9f141f868d70bb9adb62acf1852474706e49d1e5 Mon Sep 17 00:00:00 2001 From: Dave Date: Fri, 3 Aug 2018 16:09:55 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b57da2b..dfd12df 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,9 @@ For the redis configuration, add a new connection in config/database.php ```php 'redis' => [ 'centrifuge' => [ - 'host' => 'localhost', - 'password' => null, - 'port' => 6379, + 'host' => env('REDIS_HOST', '127.0.0.1'),, + 'password' => env('REDIS_PASSWORD', null), + 'port' => env('REDIS_PORT', 6379), 'database' => 0, ], // ...