summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipa-webgui.cfg
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-01-18 16:20:36 -0500
committerRob Crittenden <rcritten@redhat.com>2008-01-18 16:20:36 -0500
commit042fb11fa107718a831d468d16188e02f6ae3712 (patch)
treee0e8ee6701800b8f03702cb338f8efa211b18046 /ipa-server/ipa-gui/ipa-webgui.cfg
parentaaa3cfd58ca0c62325d7637b67c6711660624f5d (diff)
downloadfreeipa-042fb11fa107718a831d468d16188e02f6ae3712.tar.gz
freeipa-042fb11fa107718a831d468d16188e02f6ae3712.tar.xz
freeipa-042fb11fa107718a831d468d16188e02f6ae3712.zip
Fix issues reported by rpmlint.
- Removing shebangs (#!) from a bunch of python libraries - Don't use a variable name in init scripts for the lock file - Keep the init script name consistent with the binary name, so renamed ipa-kpasswd.init to ipa_kpasswd.init - Add status option to the init scripts - Move most python scripts out of /usr/share/ipa and into the python site-packages directories (ipaserver and ipaclient) - Remove unnecessary sys.path.append("/usr/share/ipa") - Fix the license string in the spec files - Rename ipa-webgui to ipa_webgui everywhere - Fix a couple of issues reported by pychecker in ipa-python
Diffstat (limited to 'ipa-server/ipa-gui/ipa-webgui.cfg')
-rw-r--r--ipa-server/ipa-gui/ipa-webgui.cfg105
1 files changed, 0 insertions, 105 deletions
diff --git a/ipa-server/ipa-gui/ipa-webgui.cfg b/ipa-server/ipa-gui/ipa-webgui.cfg
deleted file mode 100644
index 35b0b4f58..000000000
--- a/ipa-server/ipa-gui/ipa-webgui.cfg
+++ /dev/null
@@ -1,105 +0,0 @@
-[global]
-# DATABASE
-
-# no database for ipa-webgui since everything is stored in LDAP
-
-# IDENTITY
-
-# Our our sqlobject-derived proxy provider
-identity.provider='proxyprovider'
-
-# the first thing checked on any request. We want to short-circuit this
-# as early as possible
-identity.source = 'visit'
-
-# Turn on identity and visit (visit is required for identity)
-identity.on=True
-identity.failure_url="/loginfailed"
-visit.on=True
-visit.manager='proxyvisit'
-
-# SERVER
-
-server.environment="production"
-autoreload.package="ipagui"
-autoreload.on = False
-
-# Sets the number of threads the server uses
-server.thread_pool = 10
-
-# if this is part of a larger site, you can set the path
-# to the TurboGears instance here
-# server.webpath=""
-
-# Set to True if you are deploying your App behind a proxy
-# e.g. Apache using mod_proxy
-# base_url_filter.on = False
-
-# Set to True if your proxy adds the x_forwarded_host header
-# base_url_filter.use_x_forwarded_host = True
-
-# If your proxy does not add the x_forwarded_host header, set
-# the following to the *public* host url.
-# (Note: This will be overridden by the use_x_forwarded_host option
-# if it is set to True and the proxy adds the header correctly.
-# base_url_filter.base_url = "http://www.example.com"
-
-# Set to True if you'd like to abort execution if a controller gets an
-# unexpected parameter. False by default
-# tg.strict_parameters = False
-
-# LOGGING
-# Logging configuration generally follows the style of the standard
-# Python logging module configuration. Note that when specifying
-# log format messages, you need to use *() for formatting variables.
-# Deployment independent log configuration is in ipagui/config/log.cfg
-[logging]
-
-[[formatters]]
-[[[message_only]]]
-format='*(message)s'
-
-[[[full_content]]]
-format='*(asctime)s *(name)s *(levelname)s *(message)s'
-
-[[handlers]]
-[[[debug_out]]]
-# Rotate weekly on Sunday. Keep 4 backups of the log
-class='TimedRotatingFileHandler'
-level='DEBUG'
-args="('/var/log/ipa_error.log', 'w6', 1, 4)"
-formatter='full_content'
-
-[[[access_out]]]
-# For example only if one wants to duplicate the access log in TurboGears
-# Rotate weekly on Sunday. Keep 4 backups of the log
-#class='TimedRotatingFileHandler'
-#level='INFO'
-#args="('/var/log/ipa_error.log', 'w6', 1, 4)"
-#formatter='message_only'
-# By default log access to stdout which will go to /dev/null in production
-class='StreamHandler'
-level='INFO'
-args='(sys.stdout,)'
-formatter='message_only'
-
-[[[error_out]]]
-class='StreamHandler'
-level='ERROR'
-args='(sys.stdout,)'
-
-[[loggers]]
-[[[ipagui]]]
-level='DEBUG'
-qualname='ipagui'
-handlers=['debug_out']
-
-[[[allinfo]]]
-level='INFO'
-handlers=['debug_out']
-
-[[[access]]]
-level='INFO'
-qualname='turbogears.access'
-handlers=['access_out']
-propagate=0