~launchpad-pqm/launchpad/devel

6048.1.3 by Curtis Hovey
Removed the launchpad ZConfig schema.
1
# Identify the component configuration used to define the site:
2
site-definition site.zcml
3
4
# Turn on Zope3 developer mode.
5
devmode on
12156.2.3 by Edwin Grubbs
Turned devmode back on. Formatted imports.
6
6048.1.3 by Curtis Hovey
Removed the launchpad ZConfig schema.
7
# number of bytecode instructions to execute between checks for
8
# interruptions (SIGINTR, thread switches):
9
interrupt-check-interval 200
10
11
<server>
12
  type HTTP
13
  address 8085
14
</server>
15
16
# For debugging purposes, you can use this publisher instead/as well
17
# (obviously if it's as well, use a different port number). If there's
18
# an exception, Zope will drop into pdb at the point of the exception.
19
<server>
20
  type PostmortemDebuggingHTTP
21
  address 8089
22
</server>
23
24
<server>
25
  type DebugLayerHTTP
26
  address 8086
27
</server>
28
29
<server>
30
  type PrivateXMLRPC
31
  address 8087
32
</server>
33
34
# non-persistent in-memory storage
35
<zodb>
36
  <mappingstorage/>
37
</zodb>
38
39
<accesslog>
40
  # This sets up logging to both a file (access.log) and to standard
41
  # output (STDOUT).  The "path" setting can be a relative or absolute
42
  # filesystem path or the tokens STDOUT or STDERR.
43
44
  <logfile>
45
    path logs/launchpad-access.log
11795.3.1 by Ian Booth
Initial coding
46
  </logfile>
6048.1.3 by Curtis Hovey
Removed the launchpad ZConfig schema.
47
48
  <logfile>
49
    path STDOUT
50
  </logfile>
51
</accesslog>
52
53
<eventlog>
54
  # This sets up logging to both a file (z3.log) and to standard
55
  # output (STDOUT).  The "path" setting can be a relative or absolute
56
  # filesystem path or the tokens STDOUT or STDERR.
57
58
  <logfile>
59
    path logs/launchpad.log
11795.3.1 by Ian Booth
Initial coding
60
  </logfile>
6048.1.3 by Curtis Hovey
Removed the launchpad ZConfig schema.
61
62
  <logfile>
63
    path STDOUT
64
  </logfile>
65
</eventlog>
66