source: main/waeup.sirp/branches/ulif-images/etc/zope.conf.in @ 6024

Last change on this file since 6024 was 5495, checked in by uli, 14 years ago

Merge changes from ulif-paster branch back into trunk. CAUTION: After this update and running buildout, the old Data.fs will be lost! Make a backup before updating.

File size: 1.3 KB
Line 
1# Identify the component configuration used to define the site:
2site-definition ${site_zcml:output}
3
4<zodb>
5  # Standard blob storage
6  <blobstorage>
7    blob-dir ${zope_conf:blobstorage}
8    <filestorage>
9      path ${zope_conf:filestorage}/Data.fs
10    </filestorage>
11  </blobstorage>
12
13# Uncomment this if you want a blob-less standard file storage instead:
14#  <filestorage>
15#       path ${zope_conf:filestorage}
16#  </filestorage>
17
18# Uncomment this if you want to connect to a ZEO server instead:
19#  <zeoclient>
20#    server localhost:8100
21#    storage 1
22#    # ZEO client cache, in bytes
23#    cache-size 20MB
24#    # Uncomment to have a persistent disk cache
25#    #client zeo1
26#  </zeoclient>
27
28</zodb>
29
30<eventlog>
31  # This sets up logging to a file.
32  # The "path" setting can be a relative or absolute
33  # filesystem path.
34
35  <logfile>
36    path ${zope_conf:logfiles}/z3.log
37    formatter zope.exceptions.log.Formatter
38  </logfile>
39
40  # This sets up logging to to standard output.
41  # The "path" setting can be the tokens STDOUT or STDERR
42 
43#  <logfile>
44#    path STDOUT
45#    formatter zope.exceptions.log.Formatter
46#  </logfile>
47</eventlog>
48
49# Comment this line to disable developer mode.  This should be done in
50# production
51devmode on
52
53# Extra configuration lines can be added to zope_conf's extra option. Put for
54# instance productconf sections in here.
55${zope_conf:extra}
Note: See TracBrowser for help on using the repository browser.