更新 config/redis.php

This commit is contained in:
mkm 2025-08-21 09:45:17 +08:00
parent dde510a6d3
commit 921583c333

View File

@ -14,9 +14,9 @@
return [ return [
'default' => [ 'default' => [
'host' => '127.0.0.1', 'host' => getenv('REDIS_HOST'),
'password' => null, 'password' => getenv('REDIS_PASSWORD'),
'port' => 6379, 'port' => getenv('REDIS_PORT'),
'database' => 0, 'database' => getenv('REDIS_DB'),
], ],
]; ];