mirror of
https://github.com/ansible/awx.git
synced 2026-01-31 17:18:59 -03:30
Use variables to set rabbitmq host and port
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user