From f810f970fdee2cfaba7d5a9610bf67a057df79f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Sat, 6 Mar 2021 12:03:34 +0300 Subject: [PATCH] updated configs --- config/broadcasting.php | 7 ++++++- config/cache.php | 4 +++- config/queue.php | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/config/broadcasting.php b/config/broadcasting.php index 3bba1103e..2d529820c 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -11,7 +11,7 @@ return [ | 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" + | Supported: "pusher", "ably", "redis", "log", "null" | */ @@ -41,6 +41,11 @@ return [ ], ], + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + 'redis' => [ 'driver' => 'redis', 'connection' => 'default', diff --git a/config/cache.php b/config/cache.php index a8eaf93b1..50c332d73 100644 --- a/config/cache.php +++ b/config/cache.php @@ -14,7 +14,7 @@ return [ | not explicitly specified when executing a given caching function. | | Supported: "apc", "array", "database", "file", - | "memcached", "redis", "dynamodb" + | "memcached", "redis", "dynamodb", "null" | */ @@ -46,6 +46,7 @@ return [ 'driver' => 'database', 'table' => 'cache', 'connection' => null, + 'lock_connection' => null, ], 'file' => [ @@ -75,6 +76,7 @@ return [ 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', + 'lock_connection' => 'default', ], 'dynamodb' => [ diff --git a/config/queue.php b/config/queue.php index 122229666..4cef37cc1 100644 --- a/config/queue.php +++ b/config/queue.php @@ -54,7 +54,7 @@ return [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), - 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'queue' => env('SQS_QUEUE', 'default'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ],