mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 18:09:57 -03:30
Merge pull request #3583 from kumy/patch-1
Use variables to set rabbitmq host and port Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
commit
bc6edf7af3
@ -13,9 +13,9 @@ DATABASES = {
|
||||
BROKER_URL = 'amqp://{}:{}@{}:{}/{}'.format(
|
||||
"{{ rabbitmq_user }}",
|
||||
"{{ rabbitmq_password }}",
|
||||
"{{ rabbitmq_host }}",
|
||||
"{{ rabbitmq_host | default('rabbitmq')}}",
|
||||
"{{ rabbitmq_port }}",
|
||||
"awx")
|
||||
"{{ rabbitmq_default_vhost }}")
|
||||
|
||||
CHANNEL_LAYERS = {
|
||||
'default': {'BACKEND': 'asgi_amqp.AMQPChannelLayer',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user