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
|
# identify the component configuration used to define the site:
site-definition site.zcml
# Turn off Zope3 developer mode.
devmode off
# number of bytecode instructions to execute between checks for
# interruptions (SIGINTR, thread switches):
interrupt-check-interval 200
# Do not start any Launchpad servers!
# non-persistent in-memory storage
<zodb>
<mappingstorage/>
</zodb>
<accesslog>
# This sets up logging to both a file (access.log) and to standard
# output (STDOUT). The "path" setting can be a relative or absolute
# filesystem path or the tokens STDOUT or STDERR.
<logfile>
path launchpad-access.log
</logfile>
</accesslog>
<eventlog>
# This sets up logging to both a file (z3.log) and to standard
# output (STDOUT). The "path" setting can be a relative or absolute
# filesystem path or the tokens STDOUT or STDERR.
<logfile>
path launchpad.log
</logfile>
</eventlog>
|