From 48d21635869f876df191801d16460b093fbb16bc Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Tue, 19 Sep 2023 15:03:52 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=9F=E5=88=97=E4=BD=BF=E7=94=A8redis?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/queue.php b/config/queue.php index 234000815..b01f6741a 100644 --- a/config/queue.php +++ b/config/queue.php @@ -24,9 +24,9 @@ return [ 'redis' => [ 'type' => 'redis', 'queue' => 'default', - 'host' => '127.0.0.1', + 'host' => 'redis', 'port' => 6379, - 'password' => '', + 'password' => env('redis.auth'), 'select' => 0, 'timeout' => 0, 'persistent' => false,