8ccb88503a
Replaced `su` with `su -p` in `compose.yaml` to ensure the environment variables of the parent shell are preserved when running the messenger consumer.
22 lines
715 B
YAML
22 lines
715 B
YAML
# this file is managed by ansible. Do not edit it by hand
|
|
framework:
|
|
messenger:
|
|
transports:
|
|
{% if chill.rabbitmq_install +%}
|
|
async:
|
|
dsn: '%env(RABBITMQ_URL)%/async'
|
|
options:
|
|
exchange:
|
|
name: async
|
|
type: fanout
|
|
queues:
|
|
async: ~
|
|
auto_setup: true
|
|
priority: '%env(RABBITMQ_URL)%/priority'
|
|
{% else +%}
|
|
async: 'doctrine://default'
|
|
priority: 'doctrine://default'
|
|
{% endif +%}
|
|
failed: 'doctrine://default?queue_name=failed'
|
|
sync: 'sync://'
|