fix redis configuration

This commit is contained in:
jonaswinkler 2021-01-27 20:08:09 +01:00
parent 7414b3d23a
commit d2a8bc5c4c

View File

@ -160,7 +160,7 @@ CHANNEL_LAYERS = {
"default": {
"BACKEND": "channels_redis.core.RedisChannelLayer",
"CONFIG": {
"hosts": ["redis://localhost:6379"],
"hosts": [os.getenv("PAPERLESS_REDIS", "redis://localhost:6379")],
},
},
}