summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/config
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-05-21 16:25:44 -0400
committerRob Crittenden <rcritten@redhat.com>2008-05-22 16:31:08 -0400
commita087818197f38a604d2d473b27753e177b576ff2 (patch)
treeed985f1ce33cb0fbdfeaef7597016932d9667dfe /ipa-server/ipa-gui/ipagui/config
parent0d023b2680b164030384804f8fdc03bcde9d1b52 (diff)
downloadfreeipa-a087818197f38a604d2d473b27753e177b576ff2.tar.gz
freeipa-a087818197f38a604d2d473b27753e177b576ff2.tar.xz
freeipa-a087818197f38a604d2d473b27753e177b576ff2.zip
Move non-user-configurable configuration elements to TurboGears app.cfg file.
432908
Diffstat (limited to 'ipa-server/ipa-gui/ipagui/config')
-rw-r--r--ipa-server/ipa-gui/ipagui/config/app.cfg54
1 files changed, 53 insertions, 1 deletions
diff --git a/ipa-server/ipa-gui/ipagui/config/app.cfg b/ipa-server/ipa-gui/ipagui/config/app.cfg
index 38d896f27..03170d376 100644
--- a/ipa-server/ipa-gui/ipagui/config/app.cfg
+++ b/ipa-server/ipa-gui/ipagui/config/app.cfg
@@ -34,8 +34,60 @@
# tg.scheduler = False
# Set session or cookie
-# session_filter.on = True
+session_filter.on = True
+# VISIT TRACKING
+# Each visit to your application will be assigned a unique visit ID tracked via
+# a cookie sent to the visitor's browser.
+# --------------
+
+# Enable Visit tracking
+visit.on=True
+
+# Number of minutes a visit may be idle before it expires.
+# visit.timeout=20
+
+# The name of the cookie to transmit to the visitor's browser.
+# visit.cookie.name="tg-visit"
+
+# Domain name to specify when setting the cookie (must begin with . according to
+# RFC 2109). The default (None) should work for most cases and will default to
+# the machine to which the request was made. NOTE: localhost is NEVER a valid
+# value and will NOT WORK.
+# visit.cookie.domain=None
+
+# Specific path for the cookie
+# visit.cookie.path="/"
+
+# The name of the VisitManager plugin to use for visitor tracking.
+visit.manager="proxyvisit"
+
+# IDENTITY
+# General configuration of the TurboGears Identity management module
+# --------
+
+# Switch to turn on or off the Identity management module
+identity.on=True
+
+# [REQUIRED] URL to which CherryPy will internally redirect when an access
+# control check fails. If Identity management is turned on, a value for this
+# option must be specified.
+identity.failure_url="/loginfailed"
+
+identity.provider='proxyprovider'
+
+# The names of the fields on the login form containing the visitor's user ID
+# and password. In addition, the submit button is specified simply so its
+# existence may be stripped out prior to passing the form data to the target
+# controller.
+# identity.form.user_name="user_name"
+# identity.form.password="password"
+# identity.form.submit="login"
+
+# What sources should the identity provider consider when determining the
+# identity associated with a request? Comma separated list of identity sources.
+# Valid sources: form, visit, http_auth
+# identity.source="form,http_auth,visit"
# compress the data sends to the web browser
# [/]