-
Notifications
You must be signed in to change notification settings - Fork 2
/
prod.cfg
74 lines (66 loc) · 1.81 KB
/
prod.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[buildout]
extends =
base.cfg
port.cfg
backup.cfg
allow-picked-versions = false
parts +=
facts
instance-debug
zeoserver
backup
[facts]
recipe = isotoma.recipe.facts
[zeoserver]
recipe = plone.recipe.zeoserver
zeo-address = ${port:zeo}
#effective-user = ${instance:effective-user}
pack-days = 7
pack-keep-old = false
monitor-address = ${port:zeo-monitor}
zeo-conf-additional =
%define FILESTORAGE ${buildout:directory}/var/filestorage
%define BLOBSTORAGE ${buildout:directory}/var/blobstorage
[instance]
recipe = plone.recipe.zope2instance
zeo-client = true
zeo-address = $(ZEO_HOST):$(ZEO_PORT)
shared-blob = on
http-force-connection-close = true
http-address = ${port:instance-http}
user = admin:${port:admin-password}
zodb-cache-size = $(ZODB_CACHE_SIZE)
zeo-client-cache-size = $(ZEO_CLIENT_CACHE_SIZE)
# zeo-client-client = zeoclient
zope-conf-additional =
%define ZEOADDRESS ${zeoserver:zeo-address}
%define ZEOINSTANCE ${buildout:directory}/parts/zeoserver/var
%define BLOBSTORAGE ${buildout:directory}/var/blobstorage
<product-config five.z2monitor>
bind 0.0.0.0:8888
</product-config>
event-log-custom =
<syslog>
address logs.imio.be:5544
facility local3
format %(asctime)s $(HOSTNAME_HOST) zope[%(process)s]: $(PROJECT_ID) ${:_buildout_section_name_} [%(levelname)s] %(name)s | %(message)s
dateformat %b %d %H:%M:%S
level WARNING
</syslog>
<logfile>
path ${buildout:directory}/var/log/${:_buildout_section_name_}.log
level INFO
</logfile>
[instance-debug]
<= instance
http-address = ${port:instance-debug-http}
debug-mode = on
verbose-security = on
shared-blob = on
#environment-vars +=
# ENABLE_PRINTING_MAILHOST True
eggs =
${instance:eggs}
${debug-products:eggs}
zcml =
${instance:zcml}