]> BookStack Code Mirror - bookstack/blob - config/broadcasting.php
Added 'zh_CN' to app.locales
[bookstack] / config / broadcasting.php
1 <?php
2
3 return [
4
5     /*
6     |--------------------------------------------------------------------------
7     | Default Broadcaster
8     |--------------------------------------------------------------------------
9     |
10     | This option controls the default broadcaster that will be used by the
11     | framework when an event needs to be broadcast. You may set this to
12     | any of the connections defined in the "connections" array below.
13     |
14     */
15
16     'default' => env('BROADCAST_DRIVER', 'pusher'),
17
18     /*
19     |--------------------------------------------------------------------------
20     | Broadcast Connections
21     |--------------------------------------------------------------------------
22     |
23     | Here you may define all of the broadcast connections that will be used
24     | to broadcast events to other systems or over websockets. Samples of
25     | each available type of connection are provided inside this array.
26     |
27     */
28
29     'connections' => [
30
31         'pusher' => [
32             'driver' => 'pusher',
33             'key' => env('PUSHER_KEY'),
34             'secret' => env('PUSHER_SECRET'),
35             'app_id' => env('PUSHER_APP_ID'),
36         ],
37
38         'redis' => [
39             'driver' => 'redis',
40             'connection' => 'default',
41         ],
42
43         'log' => [
44             'driver' => 'log',
45         ],
46
47     ],
48
49 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.