Fix some of the formatting

This commit is contained in:
Nathan Rzepecki 2020-08-21 10:31:54 +08:00
parent 8f9b58a625
commit f1c04d3192
1 changed files with 8 additions and 1 deletions

View File

@ -14,7 +14,9 @@ return [
'dashboard' => [
'port' => env('LARAVEL_WEBSOCKETS_PORT', 6001),
'path' => 'laravel-websockets',
'middleware' => [
'web',
\BeyondCode\LaravelWebSockets\Dashboard\Http\Middleware\Authorize::class,
@ -115,10 +117,15 @@ return [
'ssl' => [
'local_cert' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT', null),
'capath' => env('LARAVEL_WEBSOCKETS_SSL_CA', null),
'local_pk' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK', null),
'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE', null),
'verify_peer' => env('APP_ENV') === 'production',
'allow_self_signed' => env('APP_ENV') !== 'production',
],