mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-20 14:22:47 -04:00
02c2a2db52
Signed-off-by: Fred Heincke <fred.heinecke@yahoo.com>
13 lines
519 B
Bash
13 lines
519 B
Bash
# vi: ft=sh
|
|
# shellcheck disable=SC2034
|
|
|
|
# RabbitMQ settings
|
|
# URL examples: https://docs.aio-pika.com/#url-examples
|
|
# This uses AIORMQ (https://github.com/mosquito/aiormq/) under the hood, and supports whatever the library supports.
|
|
# RABBITMQ_URL=ampqs://user:password@rabbitmq-server:1234/vhost?capath=/path/to/cacert.pem&certfile=/path/to/cert.pem&keyfile=/path/to/key.pem
|
|
# These values are ignored when the RABBITMQ_URL is set
|
|
RABBITMQ_HOST=rabbitmq
|
|
RABBITMQ_PORT=5672
|
|
RABBITMQ_USER=guest
|
|
RABBITMQ_PASSWORD=guest
|