mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-29 15:44:41 +00:00
set broadcasting in admin and setup wizard
This commit is contained in:
@@ -37,7 +37,7 @@ return [
|
||||
'cluster' => env('PUSHER_APP_CLUSTER'),
|
||||
'encrypted' => true,
|
||||
'host' => env('PUSHER_APP_HOST'),
|
||||
'port' => 8002,
|
||||
'port' => env('PUSHER_APP_PORT'),
|
||||
'scheme' => env('APP_ENV') === 'local' ? 'http' : 'https',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -7,7 +7,7 @@ return [
|
||||
* Set a custom dashboard configuration
|
||||
*/
|
||||
'dashboard' => [
|
||||
'port' => env('LARAVEL_WEBSOCKETS_PORT', 6001),
|
||||
'port' => env('PUSHER_APP_PORT', 6001),
|
||||
],
|
||||
|
||||
/*
|
||||
@@ -29,7 +29,7 @@ return [
|
||||
'path' => env('PUSHER_APP_PATH'),
|
||||
'capacity' => null,
|
||||
'enable_client_messages' => false,
|
||||
'enable_statistics' => true,
|
||||
'enable_statistics' => false,
|
||||
],
|
||||
],
|
||||
|
||||
@@ -57,7 +57,7 @@ return [
|
||||
/*
|
||||
* This path will be used to register the necessary routes for the package.
|
||||
*/
|
||||
'path' => 'laravel-websockets',
|
||||
'path' => 'websockets',
|
||||
|
||||
/*
|
||||
* Dashboard Routes Middleware
|
||||
|
||||
Reference in New Issue
Block a user