This commit is contained in:
Andras Bacsai 2023-12-05 11:24:23 +01:00
parent ce49f26c53
commit d48b72c160
2 changed files with 7 additions and 3 deletions

View File

@ -4,3 +4,7 @@ APP_KEY=
DB_PASSWORD=
REDIS_PASSWORD=
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=

View File

@ -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),