forked from dbrenneman/collective.pdfpeek
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuildout-zamqp.cfg
54 lines (45 loc) · 1.19 KB
/
buildout-zamqp.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[buildout]
extends = buildout.cfg
package-name = collective.pdfpeek
package-extras = [test, dexterity, archetype, zamqp]
parts +=
zeoserver
worker
eggs = ${buildout:package-name} ${buildout:package-extras}
[zeoserver]
recipe = plone.recipe.zeoserver
zeo-address = 127.0.0.1:8002
blob-storage = ${buildout:directory}/var/blobstorage
[instance]
zeo-client = true
zeo-client-cache-size = 1MB
zeo-address = ${zeoserver:zeo-address}
deprecation-warnings = off
zope-conf-additional =
%import collective.zamqp
<amqp-broker-connection>
connection_id superuser
hostname 127.0.0.1
port 5672
username guest
password guest
heartbeat 120
keepalive 60
</amqp-broker-connection>
[worker]
<= instance
zeo-client = true
zeo-client-cache-size = 1MB
zeo-address = ${zeoserver:zeo-address}
deprecation-warnings = off
http-address = 8082
zserver-threads = 1
environment-vars =
ZAMQP_LOGLEVEL INFO
zope-conf-additional =
${instance:zope-conf-additional}
<amqp-consuming-server>
connection_id superuser
site_id Plone
user_id admin
</amqp-consuming-server>