From 84b126d90df59c5ac1946978b8f7bc265b019117 Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Sun, 24 Dec 2017 13:22:35 +0200 Subject: [PATCH] include cluster in pusher config --- .env.example | 1 + config/broadcasting.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 91ba58f0..c18e2f74 100644 --- a/.env.example +++ b/.env.example @@ -32,3 +32,4 @@ MAIL_ENCRYPTION=null PUSHER_APP_ID= PUSHER_APP_KEY= PUSHER_APP_SECRET= +PUSHER_APP_CLUSTER= diff --git a/config/broadcasting.php b/config/broadcasting.php index 5eecd2b2..4db108db 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -36,7 +36,8 @@ 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ - // + 'encrypted' => true, + 'cluster' => env('PUSHER_APP_CLUSTER') ], ],