From d48b72c160ff0dd9c03163f086e8794ed48104dd Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 5 Dec 2023 11:24:23 +0100 Subject: [PATCH] wip --- .env.production | 4 ++++ config/broadcasting.php | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.env.production b/.env.production index 32652711e..f15a8b0e9 100644 --- a/.env.production +++ b/.env.production @@ -4,3 +4,7 @@ APP_KEY= DB_PASSWORD= REDIS_PASSWORD= + +PUSHER_APP_ID= +PUSHER_APP_KEY= +PUSHER_APP_SECRET= diff --git a/config/broadcasting.php b/config/broadcasting.php index 6fca2126c..f61cb05f2 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -32,9 +32,9 @@ 'pusher' => [ 'driver' => 'pusher', - 'key' => env('PUSHER_APP_KEY'), - 'secret' => env('PUSHER_APP_SECRET'), - 'app_id' => env('PUSHER_APP_ID'), + 'key' => env('PUSHER_APP_KEY', 'coolify'), + 'secret' => env('PUSHER_APP_SECRET', 'coolify'), + 'app_id' => env('PUSHER_APP_ID', 'coolify'), 'options' => [ 'host' => 'coolify-soketi', 'port' => env('PUSHER_PORT', 6001),