~launchpad-pqm/launchpad/devel

5138.5.9 by Leonard Richardson
Changed two more (commented-out) instances of xmlrpc.launchpad.dev:8087.
1
# Identify the component configuration used to define the site:
3973.1.73 by Steve Alexander
turn on devmode explicitly on developer machines, turn off explicitly elsewhere.
2
site-definition site.zcml
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
3
4
# Turn on Zope3 developer mode.
3973.1.73 by Steve Alexander
turn on devmode explicitly on developer machines, turn off explicitly elsewhere.
5
devmode on
12134.2.10 by William Grant
Revert accidental devmode deactivation.
6
3973.1.73 by Steve Alexander
turn on devmode explicitly on developer machines, turn off explicitly elsewhere.
7
# number of bytecode instructions to execute between checks for
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
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 8088
11138.1.2 by Francis J. Lacoste
8089 is used by Banshee DAAP
22
</server>
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
23
24
<server>
25
  type DebugLayerHTTP
26
  address 8086
27
</server>
28
29
<server>
4823.6.1 by Barry Warsaw
Implementation of private XML-RPC ports. Here's the approach:
30
  type PrivateXMLRPC
31
  address 8087
32
</server>
33
34
# non-persistent in-memory storage
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
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>
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
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>
1102 by Canonical.com Patch Queue Manager
Lucille had some XXXs which should have been NOTEs
61
62
  <logfile>
63
    path STDOUT
64
  </logfile>
65
</eventlog>
66
67
<logger>
7184.2.1 by Gary Poster
integrated zc.zservertracelog
68
  name zc.tracelog
9418.4.1 by Gary Poster
move tracelog back to the trace.log, and out of stdout and the main log.
69
  propagate false
7184.2.1 by Gary Poster
integrated zc.zservertracelog
70
71
  <logfile>
72
    format %(message)s
73
    path logs/trace.log
11795.3.1 by Ian Booth
Initial coding
74
  </logfile>
7184.2.1 by Gary Poster
integrated zc.zservertracelog
75
76
</logger>
77