-
Notifications
You must be signed in to change notification settings - Fork 0
/
amqp.cfg
40 lines (37 loc) · 989 Bytes
/
amqp.cfg
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
[buildout]
extends =
[rabbitmq]
hostname = 127.0.0.1
port = 5672
username = guest
password = guest
[webservicejson]
url = http://localhost:6543
login = testuser
password = test
[zope-conf]
amqp =
%import collective.zamqp
<amqp-broker-connection>
connection_id dms.connection
hostname ${rabbitmq:hostname}
port ${rabbitmq:port}
username ${rabbitmq:username}
password ${rabbitmq:password}
virtual_host /webservice
heartbeat 120
keepalive 60
</amqp-broker-connection>
<amqp-consuming-server>
connection_id dms.connection
site_id ${port:plone-path}
user_id admin
</amqp-consuming-server>
zamqp=
<product-config imio.zamqp.core>
client_id 019999
routing_key 019999
ws_url ${webservicejson:url}
ws_login ${webservicejson:login}
ws_password ${webservicejson:password}
</product-config>