[Zope-Checkins] CVS: Zope/skel/etc - zope.conf.in:1.2
Fred Drake
cvs-admin@zope.org
Tue, 18 Mar 2003 16:22:35 -0500
Update of /cvs-repository/Zope/skel/etc
In directory cvs.zope.org:/tmp/cvs-serv24683/etc
Added Files:
zope.conf.in
Log Message:
Add instance skeleton from the new-install-branch.
=== Zope/skel/etc/zope.conf.in 1.1 => 1.2 === (616/716 lines abridged)
--- /dev/null Tue Mar 18 16:22:35 2003
+++ Zope/skel/etc/zope.conf.in Tue Mar 18 16:22:04 2003
@@ -0,0 +1,713 @@
+###############################################################################
+# Welcome to Zope 2.
+###############################################################################
+#
+# This is the Zope configuration file. The 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 textual substitution
+
+%define INSTANCE <<INSTANCE_HOME>>
+%define ZOPE <<ZOPE_HOME>>
+
+# Directive: instancehome
+#
+# 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:
+#
+# instancehome /home/chrism/projects/sessions
+
+instancehome $INSTANCE
+
+# Directive: clienthome
+#
+# Description:
+# The directory in which a running Zope's process identifier files are
+# placed.
+#
+# Influences: CLIENT_HOME environment variable
+#
+# Default: $INSTANCE/var
+#
+# Example:
+#
+# clienthome /home/chrism/projects/sessions/var
+
+
+# Directive: debug-mode
+#
[-=- -=- -=- 616 lines omitted -=- -=- -=-]
+#
+# <icp-server>
+# # valid key is "address"
+# address 888
+# </icp-server>
+
+
+# Directives: port-base
+#
+# Description:
+# Offset applied to the port numbers used for the server
+# configurations. For example, if the HTTP-Server port is 8080 and
+# the port-base is 1000, the HTTP server will listen on port 9080.
+# This makes it easy to change the complete set of ports used by a
+# Zope server process
+#
+# Influences: Zope configuration
+#
+# Default:
+#
+# 0
+#
+# Example:
+#
+# port-base 1000
+
+
+# Database section
+#
+# Description:
+# A database section allows the definition of custom database and
+# storage types. The standard
+#
+# Influences: Zope configuration
+#
+# Default:
+# If a database is not specified, a FileStorage in client-home is
+# used.
+#
+# Example:
+#
+# <zodb>
+# <filestorage>
+# path $INSTANCE/var/Data.fs
+# </filestorage>
+# cache-size 5000
+# pool-size 7
+# version-pool-size 3
+# version-cache-size 100
+# </zodb>