mirror of
https://github.com/fergalmoran/dss.api.git
synced 2026-02-08 16:54:30 +00:00
Added redis host to settings
This commit is contained in:
@@ -19,7 +19,7 @@ CACHE_ROOT = os.environ.get('CACHE_ROOT', '/files/cache')
|
||||
|
||||
MEDIA_URL = os.environ.get('MEDIA_URL', 'http://deepsouthsounds.com/media/') # '{0}media/'.format(CDN_URL)
|
||||
|
||||
REDIS_HOST = 'localhost'
|
||||
REDIS_HOST = os.environ.get('REDIS_HOST', 'localhost')
|
||||
BROKER_URL = os.environ.get('BROKER_URL', 'amqp://guest:guest@localhost:5672//')
|
||||
CELERY_ACCEPT_CONTENT = ['pickle', 'msgpack', 'json']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user