2
# This is where all of your settings go for your production environment.
6
# server.socket_port=8080
8
server.environment="production"
10
# Sets the number of threads the server uses
11
# server.thread_pool = 1
13
# if this is part of a larger site, you can set the path
14
# to the TurboGears instance here
17
# Set to True if you are deploying your App behind a proxy
18
# e.g. Apache using mod_proxy
19
# base_url_filter.on = False
21
# Set to True if your proxy adds the x_forwarded_host header
22
# base_url_filter.use_x_forwarded_host = True
24
# If your proxy does not add the x_forwarded_host header, set
25
# the following to the *public* host url.
26
# (Note: This will be overridden by the use_x_forwarded_host option
27
# if it is set to True and the proxy adds the header correctly.
28
# base_url_filter.base_url = "http://www.example.com"
30
# Set to True if you'd like to abort execution if a controller gets an
31
# unexpected parameter. False by default
32
# tg.strict_parameters = False
40
# eTiny admin password (TODO: v1.1)
45
# Logging configuration generally follows the style of the standard
46
# Python logging module configuration. Note that when specifying
47
# log format messages, you need to use *() for formatting variables.
48
# Deployment independent log configuration is in tinyerp/config/log.cfg
54
# set the filename as the first argument below
55
args="('server.log',)"
58
formatter='message_only'
64
handlers=['error_out']
68
qualname='turbogears.access'
69
handlers=['access_out']