Fixed configuration inconsistency for Redis cache

In the configuration.py we use database 1 as the default but in the .env
file we used 0. This sets both values to 1 as the default.
This commit is contained in:
Tobias Genannt 2020-02-14 12:31:41 +01:00
parent 880628876f
commit 355ebadd10
1 changed files with 1 additions and 1 deletions

2
env/netbox.env vendored
View File

@ -20,7 +20,7 @@ REDIS_DATABASE=0
REDIS_SSL=false
REDIS_CACHE_HOST=redis-cache
REDIS_CACHE_PASSWORD=t4Ph722qJ5QHeQ1qfu36
REDIS_CACHE_DATABASE=0
REDIS_CACHE_DATABASE=1
REDIS_CACHE_SSL=false
SECRET_KEY=r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj
SKIP_STARTUP_SCRIPTS=false