forked from engineerOfLies/rabbitmqphp_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtestRabbitMQ.ini
More file actions
120 lines (110 loc) · 2.23 KB
/
Copy pathtestRabbitMQ.ini
File metadata and controls
120 lines (110 loc) · 2.23 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[testServer]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = authHost
EXCHANGE = hostExchange
QUEUE = auth_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[friendsMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = friendsHost
EXCHANGE = friendsExchange
QUEUE = friend_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[searchMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = searchHost
EXCHANGE = searchExchange
QUEUE = search_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[likesMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = likesHost
EXCHANGE = likesExchange
QUEUE = likes_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[commentsMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = commentsHost
EXCHANGE = commentsExchange
QUEUE = comments_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[followMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = followHost
EXCHANGE = followExchange
QUEUE = follow_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[notificationsMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = notificationsHost
EXCHANGE = notificationsExchange
QUEUE = notifications_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[deploymentMQ]
BROKER_HOST = 192.168.194.225
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = deploymentHost
EXCHANGE = deploymentExchange
QUEUE = deployment_requests
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[markingMQ]
BROKER_HOST = 10.242.239.33
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = markingHost
EXCHANGE = markingExchange
QUEUE = marking_queue
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[installMQ]
BROKER_HOST = 10.242.239.33
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = installHost
EXCHANGE = installExchange
QUEUE = install_queue
EXCHANGE_TYPE = direct
AUTO_DELETE = true
[installprodMQ]
BROKER_HOST = 10.147.17.149
BROKER_PORT = 5672
USER = admin
PASSWORD = it490
VHOST = installProdHost
EXCHANGE = installProdExchange
QUEUE = install_prod_queue
EXCHANGE_TYPE = direct
AUTO_DELETE = true