~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to configs/development/launchpad.conf

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 04:55:30 UTC
  • mfrom: (14577.1.1 testfix)
  • Revision ID: launchpad@pqm.canonical.com-20111222045530-wki9iu6c0ysqqwkx
[r=wgrant][no-qa] Fix test_publisherconfig lpstorm import. Probably a
        silent conflict between megalint and apocalypse.

Show diffs side-by-side

added added

removed removed

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