]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - doc/config-examples/sample-prod.cfg
Eliminar grupo de configuración (se induce del usuario).
[z.facultad/75.52/sercom.git] / doc / config-examples / sample-prod.cfg
1 [global]
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
8
9
10 # SERCOM
11
12 # Usuario con el cual ejecutar cuando no se necesitan privilegios
13 #sercom.tester.user = 65534 # usualmente 'nobody'
14
15 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
16 # (en segundos)
17 #sercom.tester.limits.max_tiempo_cpu = 120
18
19 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
20 #sercom.tester.limits.max_memoria = 16
21
22 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
23 #sercom.tester.limits.max_tam_archivo = 5
24
25 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
26 #sercom.tester.limits.max_cant_archivos = 5
27
28 # Máxima cantidad de subprocesos que puede crear el pcomando
29 #sercom.tester.limits.max_cant_procesos = 0
30
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
34
35 # Usuario con el cual ejecutar comandos
36 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
37
38
39 # DATABASE
40
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"
45
46 # If you have sqlite, here's a simple default to get you started
47 # in development
48 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
49
50
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"
55
56 # for Windows users, sqlite URIs look like:
57 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
58
59
60 # SERVER
61
62 server.environment="production"
63
64 # Sets the number of threads the server uses
65 # server.thread_pool = 1
66
67 # if this is part of a larger site, you can set the path
68 # to the TurboGears instance here
69 # server.webpath=""
70
71 # session_filter.on = True
72
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
76
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
81
82 # LOGGING
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
87 [logging]
88
89 [[handlers]]
90
91 [[[access_out]]]
92 # set the filename as the first argument below
93 args="('server.log',)"
94 class='FileHandler'
95 level='INFO'
96 formatter='message_only'
97
98 [[loggers]]
99 [[[sercom]]]
100 level='ERROR'
101 qualname='sercom'
102 handlers=['error_out']
103
104 [[[access]]]
105 level='INFO'
106 qualname='turbogears.access'
107 handlers=['access_out']
108 propagate=0