2
# This is where all of your settings go for your production environment.
3
# You'll copy this file over to your production server and provide it
4
# as a command-line option to your start script.
5
# Settings that are the same for both development and production
6
# (such as template engine, encodings, etc.) all go in
7
# livechat/config/app.cfg
11
# pick the form for your database
12
# sqlobject.dburi="postgres://username@hostname/databasename"
13
# sqlobject.dburi="mysql://username:password@hostname:port/databasename"
14
# sqlobject.dburi="sqlite:///file_name_and_path"
16
# If you have sqlite, here's a simple default to get you started
18
sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
21
# if you are using a database or table type without transactions
22
# (MySQL default, for example), you should turn off transactions
23
# by prepending notrans_ on the uri
24
# sqlobject.dburi="notrans_mysql://username:password@hostname:port/databasename"
26
# for Windows users, sqlite URIs look like:
27
# sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
32
server.environment="production"
34
# Sets the number of threads the server uses
35
# server.thread_pool = 1
37
# if this is part of a larger site, you can set the path
38
# to the TurboGears instance here
41
# Set to True if you are deploying your App behind a proxy
42
# e.g. Apache using mod_proxy
43
# base_url_filter.on = False
45
# Set to True if your proxy adds the x_forwarded_host header
46
# base_url_filter.use_x_forwarded_host = True
48
# If your proxy does not add the x_forwarded_host header, set
49
# the following to the *public* host url.
50
# (Note: This will be overridden by the use_x_forwarded_host option
51
# if it is set to True and the proxy adds the header correctly.
52
# base_url_filter.base_url = "http://www.example.com"
54
# Set to True if you'd like to abort execution if a controller gets an
55
# unexpected parameter. False by default
56
# tg.strict_parameters = False
59
# Logging configuration generally follows the style of the standard
60
# Python logging module configuration. Note that when specifying
61
# log format messages, you need to use *() for formatting variables.
62
# Deployment independent log configuration is in livechat/config/log.cfg
68
# set the filename as the first argument below
69
args="('server.log',)"
72
formatter='message_only'
78
handlers=['error_out']
82
qualname='turbogears.access'
83
handlers=['access_out']