shlink/config/autoload/redis.global.php

22 lines
497 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
use Shlinkio\Shlink\Core\Config\EnvVars;
return (static function (): array {
2022-04-23 13:44:17 +03:00
$redisServers = EnvVars::REDIS_SERVERS->loadFromEnv();
2022-01-01 20:40:48 +03:00
return match ($redisServers) {
null => [],
default => [
'cache' => [
'redis' => [
'servers' => $redisServers,
2022-04-23 13:44:17 +03:00
'sentinel_service' => EnvVars::REDIS_SENTINEL_SERVICE->loadFromEnv(),
],
],
],
};
})();