-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrabbitmq.conf.central
29 lines (29 loc) · 1.03 KB
/
rabbitmq.conf.central
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[
{rabbitmq_federation,
[
{exchanges, [[ {exchange, "fed-hub"},
{virtual_host, "/"},
{type, "topic"},
{durable, true},
{auto_delete, false},
{internal, false},
{upstream_set, "upstreams"} ]]
},
{upstream_sets, [ {"upstreams", [[ {connection, "upstream-server"},
{exchange, "fed-hub"},
{max_hops, 1} ]]
} ]
},
{connections, [ {"upstream-server", [{host, "ip-10-226-106-49"},
{virtual_host, "/"},
{prefetch_count, 1000},
{reconnect_delay, 5},
{heartbeat, 1}
]
} ]
},
{local_username, "guest"},
{local_nodename, "central"}
]
}
].