[Zope-Checkins] CVS: Zope/skel/etc - zope.conf.in:1.1.2.1

Fred L. Drake, Jr. fred@zope.com
Tue, 4 Feb 2003 15:31:06 -0500


Update of /cvs-repository/Zope/skel/etc
In directory cvs.zope.org:/tmp/cvs-serv3122

Added Files:
      Tag: new-install-branch
	zope.conf.in 
Log Message:
Zope config template, taken directly from the chrism-install-branch.

=== Added File Zope/skel/etc/zope.conf.in === (661/761 lines abridged)
###############################################################################
# Welcome to Zope 2.
###############################################################################
#
# This is the default Zope configuration file.  The default Zope configuration
# file shows what the default configuration directives are, and show examples
# for each directive.  To declare a directive, make sure that you add it
# to a line that does not begin with '#'.

# ZConfig "defines" used for later bash-style textual substitution

%define INSTANCE_HOME <<INSTANCE_HOME>>

# Directive: instance-home
#
# Description:
#     The path to the data files, local product files, import directory,
#     and Extensions directory used by Zope.
#
# Influences: INSTANCE_HOME environment variable
#
# Required (no default)
#
# Example:
#
#    instance-home /home/chrism/projects/sessions

instance-home ${instance_home}

# Directive: software-home
#
# Description:
#     The path to the majority of the Python software files used by Zope. One
#     software-home can support many instance-homes.
#
# Influences: SOFTWARE_HOME environment variable
#
# Required (no default)
#
# Example:
#
#    software-home /home/chrism/software/Trunk/lib/python

software-home <<SOFTWARE_HOME>>

# Directive: zope-home
#
# Description:
#     The 'top-level' Zope software directory (home of the Zserver
#     directory, the doc directory, the utilities directory, etc.)

[-=- -=- -=- 661 lines omitted -=- -=- -=-]

#
#  <fcgi-server>
#    # valid keys are "port" (single) and "file" (single).  "port" and
#    # "file" are mutually exclusive.
#    file somefile
#  </fcgi-server>
#
#  <monitor-server>
#    # valid keys are "port" (multi)
#    port 8099
#  </monitor-server>
#
#  <ftp-server>
#    valid keys are "port" (multi)
#    port 8021
#  </ftp-server>
#
#  <icp-server>
#    valid keys are "port" (multi)
#    port 8888
#  </icp-server>


# Directives: database
#
# Description:
#     A database section allows the definition of custom database and storage
#     types.   XXX describe more.
#
# Influences: zope.py configuration
#
# Default:
#   If a root database (a database which includes a mount_point of '/') 
#   is not specified, a FileStorage in client-home is used.
#
# Example:
#
# <database>
#    <filestorage>
#      file-name ${instance_home}/var/Data.fs
#    </filestorage>
#    mount-point /
#    db-class                       ZODB.DB
#    cache-size                     5000
#    pool-size                      7
#    cache-deactivate-after         60
#    version-pool-size              3
#    version-cache-size             100
#    version-cache-deactivate-after 10
# </database>