mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
24 lines
656 B
PHP
24 lines
656 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Core\Config\EnvVars;
|
|
|
|
return (static function (): array {
|
|
$redisServers = EnvVars::REDIS_SERVERS->loadFromEnv();
|
|
$redis = ['pub_sub_enabled' => $redisServers !== null && EnvVars::REDIS_PUB_SUB_ENABLED->loadFromEnv(false)];
|
|
$cacheRedisBlock = $redisServers === null ? [] : [
|
|
'redis' => [
|
|
'servers' => $redisServers,
|
|
'sentinel_service' => EnvVars::REDIS_SENTINEL_SERVICE->loadFromEnv(),
|
|
],
|
|
];
|
|
|
|
return [
|
|
'cache' => [
|
|
'namespace' => 'Shlink',
|
|
...$cacheRedisBlock,
|
|
],
|
|
'redis' => $redis,
|
|
];
|
|
})();
|