mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-12 01:26:47 +01:00
fix redis configuration
This commit is contained in:
parent
7414b3d23a
commit
d2a8bc5c4c
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ CHANNEL_LAYERS = {
|
||||||
"default": {
|
"default": {
|
||||||
"BACKEND": "channels_redis.core.RedisChannelLayer",
|
"BACKEND": "channels_redis.core.RedisChannelLayer",
|
||||||
"CONFIG": {
|
"CONFIG": {
|
||||||
"hosts": ["redis://localhost:6379"],
|
"hosts": [os.getenv("PAPERLESS_REDIS", "redis://localhost:6379")],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue