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

Chris McDonough chrism@zope.com
Sun, 6 Oct 2002 17:42:53 -0400


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

Added Files:
      Tag: chrism-install-branch
	zope.conf 
Log Message:
Added support for creating NT services from instance homes.

This works by building an instance home normally and then from the
instance home running "bin\ntservice.py install".  The service is named
after the instance, and each instance can have its own service installed.

In the process, moved "zctl.py" into a "bin" directory, and moved "zope.conf"
into an "etc" directory inside an instance home.


=== Added File Zope/inst/skel/inst/skel/etc/zope.conf === (983/1083 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 '#'.
#
# Directive: zope_home
#
# Description:
#     The 'top-level' Zope software directory (home of the Zserver
#     directory, the doc directory, the utilities directory, etc.)
#
# Influences: ZOPE_HOME environment variable
#
# Default:
#
#     The directory in which the 'zope.py' file (or other executable file
#     used to start Zope) lives.
#
# Example:
#
#    zope_home /home/chrism/software/Trunk


# 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
#
# Default: The current working directory when Zope is started.
#
# Example:
#
#    instance_home /home/chrism/projects/sessions


# 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
#

[-=- -=- -=- 983 lines omitted -=- -=- -=-]

# Directive: zeo_client_min_disconnect_poll
#
# Description:
#     The minimum number of seconds that a ClientStorage will wait before
#     retrying a connection after a failure. The default is 5 if this is
#     left unset.
#
# Influences: zope.py configuration
#
# Default: 5
#
# Example:
#
#    zeo_client_min_disconnect_poll 10


# Directive: zeo_client_max_disconnect_poll
#
# Description:
#     The maximum number of seconds that a ClientStorage will wait before
#     retrying a connection after a failure. The default is 300 if this is
#     left unset.
#
# Influences: zope.py configuration
#
# Default: 300
#
# Example:
#
#    zeo_client_max_disconnect_poll 300


# Directive: zeo_client_wait_for_server_on_startup
#
# Description:
#     If this is set to "on", the ZEO ClientStorage will wait for a
#     connection to its storage before serving data. If this is set to
#     "off", the ZEO ClientStorage will attempt to serve data out of its
#     cache file at startup even if it cannot make a connection to a
#     storage server.
#
# Influences: zope.py configuration
#
# Default: off
#
# Example:
#
#    zeo_client_wait_for_server_on_startup on