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
|
# This configuration file is used by the AppServerLayer tests to simplify
# configuring Launchpad for successful run of those tests.
# Identify the component configuration used to define the site:
site-definition site.zcml
# Make this work a little more like production.
devmode off
# number of bytecode instructions to execute between checks for
# interruptions (SIGINTR, thread switches):
interrupt-check-interval 200
<server>
type HTTP
address 8085
</server>
<server>
type PrivateXMLRPC
address 8087
</server>
# non-persistent in-memory storage
<zodb>
<mappingstorage/>
</zodb>
<accesslog>
<logfile>
path logs/test-appserver-layer.log
</logfile>
</accesslog>
<eventlog>
<logfile>
path logs/test-appserver-layer.log
</logfile>
</eventlog>
<logger>
name zc.tracelog
propagate false
<logfile>
format %(message)s
path logs/test-appserver-layer-trace.log
</logfile>
</logger>
|