Commit 95699bc4 authored by Nicolas Widart's avatar Nicolas Widart Committed by GitHub

Merge pull request #397 from mikemand/fix-pusher-config

Update Pusher configuration
parents 254cd4a5 6b761bfa
......@@ -30,11 +30,12 @@ return [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_KEY'),
'secret' => env('PUSHER_SECRET'),
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
//
'cluster' => env('PUSHER_APP_CLUSTER', 'eu'),
'encrypted' => env('PUSHER_APP_ENCRYPTED', true),
],
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment