Merge pull request #477 from lionslair/2.x

Add some extra ENV variables for the config file
This commit is contained in:
rennokki 2020-08-21 07:51:13 +03:00 committed by GitHub
commit b4c7f341d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -164,11 +164,11 @@ return [
'replication' => [ 'replication' => [
'driver' => 'local', 'driver' => env('LARAVEL_WEBSOCKETS_REPLICATION_DRIVER', 'local'),
'redis' => [ 'redis' => [
'connection' => 'default', 'connection' => env('LARAVEL_WEBSOCKETS_REPLICATION_CONNECTION', 'default'),
], ],
@ -188,7 +188,7 @@ return [
| |
*/ */
'driver' => 'database', 'driver' => env('LARAVEL_WEBSOCKETS_STATISTICS_DRIVER', 'database'),
'database' => [ 'database' => [