[global] # This is where all of your settings go for your production environment. # Settings that are the same for both development and production # (such as template engine, encodings, etc.) all go in # ipagui/config/app.cfg # DATABASE # no database for ipa_webgui since everything is stored in LDAP # 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="/ipa/ui" # Set to True if you are deploying your App behind a proxy # e.g. Apache using mod_proxy base_url_filter.on = True # 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 # Set to True if you want to use internationalization support. i18n.run_template_filter = True # TurboGears sessions. session_filter.storage_type='File' session_filter.storage_path='/var/cache/ipa/sessions' # Listen only on the local interface so all requests go through # Apache/mod_auth_kerb/mod_proxy. server.socket_port = 8080 server.socket_host="127.0.0.1" # 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'] propagate=0 [[[allinfo]]] level='INFO' handlers=['debug_out'] propagate=0 [[[access]]] level='INFO' qualname='turbogears.access' handlers=['access_out'] propagate=0