mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-23 05:58:49 +08:00
nextcloud: properly add REDIS_DB_INDEX
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
6bae8cc98a
commit
17e002e929
1 changed files with 4 additions and 1 deletions
|
@ -6,7 +6,6 @@ if (getenv('REDIS_HOST')) {
|
|||
'redis' => array(
|
||||
'host' => getenv('REDIS_HOST'),
|
||||
'password' => (string) getenv('REDIS_HOST_PASSWORD'),
|
||||
// 'dbindex' => (int) getenv('REDIS_DB_INDEX'),
|
||||
),
|
||||
);
|
||||
|
||||
|
@ -15,4 +14,8 @@ if (getenv('REDIS_HOST')) {
|
|||
} elseif (getenv('REDIS_HOST')[0] != '/') {
|
||||
$CONFIG['redis']['port'] = 6379;
|
||||
}
|
||||
|
||||
if (getenv('REDIS_DB_INDEX') !== false) {
|
||||
$CONFIG['redis']['dbindex'] = (int) getenv('REDIS_DB_INDEX');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue