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 @@ return [ '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),