Last change
on this file since 11114 was
9576,
checked in by Henrik Bettermann, 12 years ago
|
Disable developer mode. Disable access.log in deploy-config.
|
File size:
1.5 KB
|
Rev | Line | |
---|
[5493] | 1 | # Identify the component configuration used to define the site: |
---|
| 2 | site-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 | |
---|
[9223] | 30 | <zodb async> |
---|
| 31 | <filestorage> |
---|
| 32 | # create true |
---|
| 33 | path ${zope_conf:filestorage}/Data.async.fs |
---|
| 34 | </filestorage> |
---|
| 35 | </zodb> |
---|
| 36 | |
---|
[5493] | 37 | <eventlog> |
---|
| 38 | # This sets up logging to a file. |
---|
| 39 | # The "path" setting can be a relative or absolute |
---|
| 40 | # filesystem path. |
---|
| 41 | |
---|
| 42 | <logfile> |
---|
| 43 | path ${zope_conf:logfiles}/z3.log |
---|
| 44 | formatter zope.exceptions.log.Formatter |
---|
| 45 | </logfile> |
---|
| 46 | |
---|
| 47 | # This sets up logging to to standard output. |
---|
| 48 | # The "path" setting can be the tokens STDOUT or STDERR |
---|
| 49 | |
---|
| 50 | # <logfile> |
---|
| 51 | # path STDOUT |
---|
| 52 | # formatter zope.exceptions.log.Formatter |
---|
| 53 | # </logfile> |
---|
| 54 | </eventlog> |
---|
| 55 | |
---|
| 56 | # Comment this line to disable developer mode. This should be done in |
---|
| 57 | # production |
---|
[9576] | 58 | # devmode on |
---|
[5493] | 59 | |
---|
| 60 | # Extra configuration lines can be added to zope_conf's extra option. Put for |
---|
| 61 | # instance productconf sections in here. |
---|
| 62 | ${zope_conf:extra} |
---|
Note: See
TracBrowser for help on using the repository browser.