Included comments at the top of all template files indicating that they are managed by Ansible and should not be edited manually. This ensures clarity and avoids unintended manual modifications.
16 lines
537 B
YAML
16 lines
537 B
YAML
# this file is managed by ansible. Do not edit it by hand
|
|
framework:
|
|
messenger:
|
|
transports:
|
|
async:
|
|
dsn: '%env(RABBITMQ_URL)%/async'
|
|
options:
|
|
exchange:
|
|
name: async
|
|
type: fanout
|
|
queues:
|
|
async: ~
|
|
auto_setup: true
|
|
priority: '%env(RABBITMQ_URL)%/priority'
|
|
failed: 'doctrine://default?queue_name=failed'
|
|
sync: 'sync://' |