mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Use variables to set rabbitmq host and port
This commit is contained in:
parent
cb8c9567b0
commit
3dd69a06e7
@ -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