[open-ils-commits] r8282 - branches/acq-experiment/Open-ILS/web/oilsweb

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Dec 28 11:00:23 EST 2007


Author: erickson
Date: 2007-12-28 10:37:30 -0500 (Fri, 28 Dec 2007)
New Revision: 8282

Modified:
   branches/acq-experiment/Open-ILS/web/oilsweb/development.ini
Log:
added some comments. added memcache as the default session handler

Modified: branches/acq-experiment/Open-ILS/web/oilsweb/development.ini
===================================================================
--- branches/acq-experiment/Open-ILS/web/oilsweb/development.ini	2007-12-27 21:40:56 UTC (rev 8281)
+++ branches/acq-experiment/Open-ILS/web/oilsweb/development.ini	2007-12-28 15:37:30 UTC (rev 8282)
@@ -1,4 +1,4 @@
-#
+
 # oilsweb - Pylons development environment configuration
 #
 # The %(here)s variable will be replaced with the parent directory of this file
@@ -12,8 +12,8 @@
 
 [server:main]
 use = egg:Paste#http
-host = 0.0.0.0
-#host = 216.154.195.227
+#host = 0.0.0.0
+host = 216.154.195.227
 port = 5000
 
 [app:main]
@@ -22,38 +22,46 @@
 cache_dir = %(here)s/data
 beaker.session.key = oilsweb
 beaker.session.secret = somesecret
+# If you'd like to fine-tune the individual locations of the cache data dirs
+# for the Cache data, or the Session saves, un-comment the desired settings
+# here:
+#beaker.cache.data_dir = %(here)s/data/cache
+#beaker.session.data_dir = %(here)s/data/sessions
+beaker.session.type = ext:memcached
+beaker.session.url = 127.0.0.1:11211
 
-# ----------------------------------------------------------
+# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
+# Debug mode will enable the interactive debugging tool, allowing ANYONE to
+# execute malicious code after an exception is raised.
+#set debug = false
+
+# ----------------------------------------------------------------
+# OpenSRF / OpenILS / Custom configs
+# ----------------------------------------------------------------
 osrf_config = /openils/conf/opensrf_core.xml
 osrf_config_ctxt = config.opensrf
 oils_prefix = /oils
+
 # media_prefix can be a path or full URL
 oils_media_prefix = /oils/media
+
 # added_content_prefix can be a path or full URL
 oils_added_content_prefix = http://dev.gapines.org/opac/extras/ac
+
 # URL relative to the app root where XSL files are found
 oils_xsl_prefix = oilsweb/public/oils/media/xsl
 oils_xsl_acq_bib = acq-bibdata-marc.xslt
 oils_xsl_marc2html = oilsMARC21slim2HTML.xsl
+
 # how long do we cache search results for
 oils_bib_cache_time = 3200
+
 # path to extra templates or overridden templates
 local_templates = /openils/var/web/oilsweb/oilsweb/local_templates
-# ----------------------------------------------------------
 
 
-# If you'd like to fine-tune the individual locations of the cache data dirs
-# for the Cache data, or the Session saves, un-comment the desired settings
-# here:
-#beaker.cache.data_dir = %(here)s/data/cache
-#beaker.session.data_dir = %(here)s/data/sessions
 
-# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
-# Debug mode will enable the interactive debugging tool, allowing ANYONE to
-# execute malicious code after an exception is raised.
-#set debug = false
 
-
 # Logging configuration
 [loggers]
 keys = root, oilsweb



More information about the open-ils-commits mailing list