Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave authored Aug 3, 2018
1 parent 441be4e commit 9f141f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
],
// ...
Expand Down

0 comments on commit 9f141f8

Please sign in to comment.