mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
redis socket support
This commit is contained in:
committed by
Ryan Petrello
parent
d58df0f34a
commit
770b457430
@@ -10,18 +10,6 @@ DATABASES = {
|
||||
}
|
||||
}
|
||||
|
||||
BROKER_URL = 'redis://{}:{}/'.format(
|
||||
"{{ redis_hostname }}",
|
||||
"{{ redis_port }}",)
|
||||
|
||||
CHANNEL_LAYERS = {
|
||||
'default': {'BACKEND': 'channels_redis.core.RedisChannelLayer',
|
||||
'CONFIG': {
|
||||
'hosts': [("{{ redis_hostname }}", {{ redis_port|int }})],
|
||||
'capacity': 10000,
|
||||
}}
|
||||
}
|
||||
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
||||
|
||||
Reference in New Issue
Block a user