Fix 'buildout.cfg' modification code
[zope-bootstrap.git] / skel-zope3 / zope.conf
1 # Identify the component configuration used to define the site:
2 site-definition site.zcml
3
4 <zodb>
5   # Wrap standard FileStorage with BlobStorage proxy to get ZODB blobs
6   # support.
7   # This won't be needed with ZODB 3.9, as its FileStorage supports
8   # blobs by itself. If you use ZODB 3.9, remove the proxy and specify
9   # the blob-dir parameter right in in filestorage, just after path.
10   <blobstorage>
11     blob-dir var/blobs
12     <filestorage>
13       path var/Data.fs
14     </filestorage>
15   </blobstorage>
16
17 # Uncomment this if you want to connect to a ZEO server instead:
18 #  <zeoclient>
19 #    server localhost:8100
20 #    storage 1
21 #    # ZEO client cache, in bytes
22 #    cache-size 20MB
23 #    # Uncomment to have a persistent disk cache
24 #    #client zeo1
25 #  </zeoclient>
26 </zodb>
27
28 <eventlog>
29   # This sets up logging to both a file and to standard output (STDOUT).
30   # The "path" setting can be a relative or absolute filesystem path or
31   # the tokens STDOUT or STDERR.
32
33   <logfile>
34     path log/z3.log
35     formatter zope.exceptions.log.Formatter
36   </logfile>
37
38   <logfile>
39     path STDOUT
40     formatter zope.exceptions.log.Formatter
41   </logfile>
42 </eventlog>
43
44 # Comment this line to disable developer mode.  This should be done in
45 # production
46 devmode on