Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit f1c04d3

Browse files
committed
Fix some of the formatting
1 parent 8f9b58a commit f1c04d3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

config/websockets.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
'dashboard' => [
1515

1616
'port' => env('LARAVEL_WEBSOCKETS_PORT', 6001),
17+
1718
'path' => 'laravel-websockets',
19+
1820
'middleware' => [
1921
'web',
2022
\BeyondCode\LaravelWebSockets\Dashboard\Http\Middleware\Authorize::class,
@@ -113,12 +115,17 @@
113115
*/
114116

115117
'ssl' => [
116-
118+
117119
'local_cert' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_CERT', null),
120+
118121
'capath' => env('LARAVEL_WEBSOCKETS_SSL_CA', null),
122+
119123
'local_pk' => env('LARAVEL_WEBSOCKETS_SSL_LOCAL_PK', null),
124+
120125
'passphrase' => env('LARAVEL_WEBSOCKETS_SSL_PASSPHRASE', null),
126+
121127
'verify_peer' => env('APP_ENV') === 'production',
128+
122129
'allow_self_signed' => env('APP_ENV') !== 'production',
123130

124131
],

0 commit comments

Comments
 (0)