8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
1 |
# identify the component configuration used to define the site: |
2 |
site-definition site.zcml |
|
3 |
||
4 |
# number of bytecode instructions to execute between checks for |
|
5 |
# interruptions (SIGINTR, thread switches): |
|
6 |
interrupt-check-interval 200 |
|
7 |
||
8 |
<server>
|
|
9 |
type HTTP |
|
10 |
address 8085 |
|
11 |
</server>
|
|
12 |
||
13 |
# For debugging purposes, you can use this publisher instead/as well |
|
14 |
# (obviously if it's as well, use a different port number). If there's |
|
15 |
# an exception, Zope will drop into pdb at the point of the exception. |
|
14
by Canonical.com Patch Queue Manager
Add soy to the configuration |
16 |
<server>
|
17 |
type PostmortemDebuggingHTTP |
|
18 |
address 8089 |
|
19 |
</server>
|
|
8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
20 |
|
10
by Canonical.com Patch Queue Manager
Make soyuz a working web application, add a very minimal rosetta with replaceable stubs. |
21 |
##<server>
|
22 |
## type FTP |
|
23 |
## address 8021 |
|
24 |
##</server>
|
|
8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
25 |
|
26 |
# non-persistent in-memory storage |
|
27 |
<zodb>
|
|
28 |
<mappingstorage/>
|
|
29 |
</zodb>
|
|
30 |
||
31 |
<accesslog>
|
|
32 |
# This sets up logging to both a file (access.log) and to standard |
|
33 |
# output (STDOUT). The "path" setting can be a relative or absolute |
|
34 |
# filesystem path or the tokens STDOUT or STDERR. |
|
35 |
||
36 |
<logfile>
|
|
28
by Canonical.com Patch Queue Manager
Renamed soyuz to launchpad in top-level files. |
37 |
path launchpad-access.log |
8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
38 |
</logfile>
|
39 |
||
40 |
<logfile>
|
|
41 |
path STDOUT |
|
42 |
</logfile>
|
|
43 |
</accesslog>
|
|
44 |
||
45 |
<eventlog>
|
|
46 |
# This sets up logging to both a file (z3.log) and to standard |
|
47 |
# output (STDOUT). The "path" setting can be a relative or absolute |
|
48 |
# filesystem path or the tokens STDOUT or STDERR. |
|
49 |
||
50 |
<logfile>
|
|
28
by Canonical.com Patch Queue Manager
Renamed soyuz to launchpad in top-level files. |
51 |
path launchpad.log |
8
by Canonical.com Patch Queue Manager
Added Soyuz app server start-up and config files |
52 |
</logfile>
|
53 |
||
54 |
<logfile>
|
|
55 |
path STDOUT |
|
56 |
</logfile>
|
|
57 |
</eventlog>
|
|
58 |
||
59 |
# arch-tag: 6fd31574-8259-4a74-b270-822b9db97f53 |