Add new envvars for events backend and async broker URLs

This commit is contained in:
zhengrui 2021-02-18 22:21:55 +08:00 committed by Yamila Moreno
parent 1fcb875833
commit dec894a8bd
1 changed files with 7 additions and 0 deletions

View File

@ -191,6 +191,13 @@ These variables are used to leave messages in the rabbitmq services. These varia
```
RABBITMQ_USER: taiga
RABBITMQ_PASS: taiga
```
Two other variables `EVENTS_PUSH_BACKEND_URL` and `CELERY_BROKER_URL` can also be used to set the events push backend URL and celery broker URL.
```
EVENTS_PUSH_BACKEND_URL: "amqp://taiga:taiga@taiga-events-rabbitmq:5672/taiga"
CELERY_BROKER_URL: "amqp://taiga:taiga@taiga-async-rabbitmq:5672/taiga"
```
**Service: taiga-events**