1 | # Galaxy Message Queue |
---|
2 | # Galaxy uses AMQ protocol to receive messages from external sources like |
---|
3 | # bar code scanners. Galaxy has been tested against RabbitMQ AMQP implementation. |
---|
4 | # For Galaxy to receive messages from a message queue the RabbitMQ server has |
---|
5 | # to be set up with a user account and other parameters listed below. The 'host' |
---|
6 | # and 'port' fields should point to where the RabbitMQ server is running. |
---|
7 | |
---|
8 | #[galaxy:amqp] |
---|
9 | #host = 127.0.0.1 |
---|
10 | #port = 5672 |
---|
11 | #userid = galaxy |
---|
12 | #password = galaxy |
---|
13 | #virtual_host = galaxy_messaging_engine |
---|
14 | #queue = galaxy_queue |
---|
15 | #exchange = galaxy_exchange |
---|
16 | #routing_key = bar_code_scanner |
---|
17 | |
---|
18 | # The following section(s) 'scanner#' is for specifying the state of the |
---|
19 | # sample this scanner represents. This state name should be one of the |
---|
20 | # possible states created for this request type in Galaxy |
---|
21 | # If there multiple scanners attached to this host the add as many "scanner#" |
---|
22 | # sections below each with the name & prefix of the bar code scanner and |
---|
23 | # the state it represents |
---|
24 | #[scanner1] |
---|
25 | #name = |
---|
26 | #state = |
---|
27 | #prefix = |
---|
28 | |
---|
29 | #[scanner2] |
---|
30 | #name = |
---|
31 | #state = |
---|
32 | #prefix = |
---|