From 4fba29c0ec7da3e12b7d8a6e08fdff3de11826f0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 7 Dec 2015 12:03:49 -0600 Subject: [PATCH] fix problems --- .env.example | 8 ++++---- config/database.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 7678d4cf..031862be 100644 --- a/.env.example +++ b/.env.example @@ -11,13 +11,13 @@ CACHE_DRIVER=file SESSION_DRIVER=file QUEUE_DRIVER=sync +REDIS_HOST=localhost +REDIS_PASSWORD=null +REDIS_PORT=6379 + MAIL_DRIVER=smtp MAIL_HOST=mailtrap.io MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null - -REDIS_HOST=localhost -REDiS_KEY= -REDIS_PORT=6379 diff --git a/config/database.php b/config/database.php index cfef6bd4..2b41a2c2 100644 --- a/config/database.php +++ b/config/database.php @@ -117,7 +117,7 @@ 'default' => [ 'host' => env('REDIS_HOST', 'localhost'), - 'password' => env('REDIS_KEY', ''), + 'password' => env('REDIS_PASSWORD', ''), 'port' => env('REDIS_PORT', 6379), 'database' => 0, ],