39 lines
932 B
Text
39 lines
932 B
Text
# loops/inst/bluebream/zope.conf
|
|
# main zope configuration file for deployment
|
|
|
|
# Identify the component configuration used to define the site:
|
|
site-definition application.zcml
|
|
|
|
<zodb>
|
|
|
|
<filestorage>
|
|
path var/filestorage/Data.fs
|
|
blob-dir var/blob
|
|
</filestorage>
|
|
|
|
# Uncomment this if you want to connect to a ZEO server instead:
|
|
# <zeoclient>
|
|
# server localhost:8100
|
|
# storage 1
|
|
# # ZEO client cache, in bytes
|
|
# cache-size 20MB
|
|
# # Uncomment to have a persistent disk cache
|
|
# #client zeo1
|
|
# </zeoclient>
|
|
</zodb>
|
|
|
|
<eventlog>
|
|
# This sets up logging to both a file and to standard output (STDOUT).
|
|
# The "path" setting can be a relative or absolute filesystem path or
|
|
# the tokens STDOUT or STDERR.
|
|
|
|
<logfile>
|
|
path var/log/z3-deploy.log
|
|
formatter zope.exceptions.log.Formatter
|
|
</logfile>
|
|
|
|
<logfile>
|
|
path STDOUT
|
|
formatter zope.exceptions.log.Formatter
|
|
</logfile>
|
|
</eventlog>
|