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
|
# Identify the component configuration used to define the site:
site-definition site.zcml
# Turn on Zope3 developer mode.
devmode on
# number of bytecode instructions to execute between checks for
# interruptions (SIGINTR, thread switches):
interrupt-check-interval 200
<server>
type HTTP
address 8085
</server>
# For debugging purposes, you can use this publisher instead/as well
# (obviously if it's as well, use a different port number). If there's
# an exception, Zope will drop into pdb at the point of the exception.
<server>
type PostmortemDebuggingHTTP
address 8089
</server>
<server>
type DebugLayerHTTP
address 8086
</server>
<server>
type PrivateXMLRPC
address 8087
</server>
# 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>
<logfile>
path STDOUT
</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>
<logfile>
path STDOUT
</logfile>
</eventlog>
|