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