File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html-chash/config
Upload
[..]
activitylog.php (1.53 KB)
Edit
Rename
Del
app.php (10.02 KB)
Edit
Rename
Del
auth.php (3.71 KB)
Edit
Rename
Del
backup.php (7.92 KB)
Edit
Rename
Del
broadcasting.php (1.56 KB)
Edit
Rename
Del
cache.php (2.99 KB)
Edit
Rename
Del
database.php (4.93 KB)
Edit
Rename
Del
datatables-buttons.php (2.21 KB)
Edit
Rename
Del
datatables.php (3.81 KB)
Edit
Rename
Del
filesystems.php (2.07 KB)
Edit
Rename
Del
hashing.php (1.53 KB)
Edit
Rename
Del
logging.php (2.74 KB)
Edit
Rename
Del
mail.php (4.57 KB)
Edit
Rename
Del
queue.php (2.65 KB)
Edit
Rename
Del
recaptcha.php (4.04 KB)
Edit
Rename
Del
services.php (1.15 KB)
Edit
Rename
Del
session.php (6.81 KB)
Edit
Rename
Del
view.php (1.03 KB)
Edit
Rename
Del
Edit: broadcasting.php
<?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" | */ 'default' => env('BROADCAST_DRIVER', 'null'), /* |-------------------------------------------------------------------------- | 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' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_APP_KEY'), 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ 'cluster' => env('PUSHER_APP_CLUSTER'), 'useTLS' => true, ], ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], 'log' => [ 'driver' => 'log', ], 'null' => [ 'driver' => 'null', ], ], ];
Simpan