1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/config/broadcasting.php

66 lines
1.8 KiB
PHP
Raw Normal View History

2018-06-22 19:44:21 +02:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the "connections" array below.
|
| Supported: "pusher", "redis", "log", "null"
|
*/
2018-09-10 11:50:53 +02:00
'default' => env('BROADCAST_DRIVER', 'polycast'),
2018-06-22 19:44:21 +02:00
/*
|--------------------------------------------------------------------------
| Broadcast Connections
|--------------------------------------------------------------------------
|
| Here you may define all of the broadcast connections that will be used
| to broadcast events to other systems or over websockets. Samples of
| each available type of connection are provided inside this array.
|
*/
'connections' => [
2018-09-07 15:08:34 +02:00
'polycast' => [
'driver' => 'polycast',
// this deletes old events after 2 minutes, this can be changed to leave them in the db longer if required
2018-11-12 10:12:57 +01:00
'delete_old' => 2,
2018-09-07 15:08:34 +02:00
],
2018-06-22 19:44:21 +02:00
'pusher' => [
2018-07-24 08:34:28 +02:00
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
2018-06-22 19:44:21 +02:00
'options' => [
2018-07-24 08:34:28 +02:00
'cluster' => env('PUSHER_APP_CLUSTER'),
2018-06-22 19:44:21 +02:00
'encrypted' => true,
],
],
'redis' => [
2018-07-24 08:34:28 +02:00
'driver' => 'redis',
2018-06-22 19:44:21 +02:00
'connection' => 'default',
],
'log' => [
'driver' => 'log',
],
'null' => [
'driver' => 'null',
],
],
];