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 # sercom/config/app.cfg
12 # Usuario con el cual ejecutar cuando no se necesitan privilegios
13 #sercom.tester.user = 65534 # usualmente 'nobody'
15 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
17 #sercom.tester.limits.max_tiempo_cpu = 120
19 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
20 #sercom.tester.limits.max_memoria = 16
22 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
23 #sercom.tester.limits.max_tam_archivo = 5
25 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
26 #sercom.tester.limits.max_cant_archivos = 5
28 # Máxima cantidad de subprocesos que puede crear el pcomando
29 #sercom.tester.limits.max_cant_procesos = 0
31 # Máxima cantidad de locks de memoria (memoria que no puede ser swappeada)
32 # que puede solicitar el comando
33 #sercom.tester.limits.max_locks_memoria = 0
35 # Usuario con el cual ejecutar comandos
36 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
41 # pick the form for your database
42 # sqlobject.dburi="postgres://username@hostname/databasename"
43 # sqlobject.dburi="mysql://username:password@hostname:port/databasename"
44 # sqlobject.dburi="sqlite:///file_name_and_path"
46 # If you have sqlite, here's a simple default to get you started
48 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
51 # if you are using a database or table type without transactions
52 # (MySQL default, for example), you should turn off transactions
53 # by prepending notrans_ on the uri
54 # sqlobject.dburi="notrans_mysql://username:password@hostname:port/databasename"
56 # for Windows users, sqlite URIs look like:
57 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
62 server.environment="production"
64 # Sets the number of threads the server uses
65 # server.thread_pool = 1
67 # if this is part of a larger site, you can set the path
68 # to the TurboGears instance here
71 # session_filter.on = True
73 # Set to True if you'd like to abort execution if a controller gets an
74 # unexpected parameter. False by default
75 # tg.strict_parameters = False
77 # Set the following to True if you are deploying your app using mod_proxy,
78 # mod_rewrite or any other mechanism that forwards requests to your app.
79 # base_url_filter.on = False
80 # base_url_filter.use_x_forwarded_host = False
83 # Logging configuration generally follows the style of the standard
84 # Python logging module configuration. Note that when specifying
85 # log format messages, you need to use *() for formatting variables.
86 # Deployment independent log configuration is in sercom/config/log.cfg
92 # set the filename as the first argument below
93 args="('server.log',)"
96 formatter='message_only'
102 handlers=['error_out']
106 qualname='turbogears.access'
107 handlers=['access_out']