]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - doc/config-examples/sample-prod.cfg
744dbc2391bf8585cc7ebd82b6a0398e385e9bb9
[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 # Grupo con el cual ejecutar cuando no se necesitan privilegios
16 #sercom.tester.group = 65534 # usualmente 'nogroup'
17
18 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
19 # (en segundos)
20 #sercom.tester.limits.max_tiempo_cpu = 120
21
22 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
23 #sercom.tester.limits.max_memoria = 16
24
25 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
26 #sercom.tester.limits.max_tam_archivo = 5
27
28 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
29 #sercom.tester.limits.max_cant_archivos = 5
30
31 # Máxima cantidad de subprocesos que puede crear el pcomando
32 #sercom.tester.limits.max_cant_procesos = 0
33
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
37
38 # Usuario con el cual ejecutar comandos
39 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
40
41 # Grupo con el cual ejecutar comandos
42 #sercom.tester.chroot.group = 65534 # usualmente 'nogroup'
43
44
45 # DATABASE
46
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"
51
52 # If you have sqlite, here's a simple default to get you started
53 # in development
54 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
55
56
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"
61
62 # for Windows users, sqlite URIs look like:
63 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
64
65
66 # SERVER
67
68 server.environment="production"
69
70 # Sets the number of threads the server uses
71 # server.thread_pool = 1
72
73 # if this is part of a larger site, you can set the path
74 # to the TurboGears instance here
75 # server.webpath=""
76
77 # session_filter.on = True
78
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
82
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
87
88 # LOGGING
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
93 [logging]
94
95 [[handlers]]
96
97 [[[access_out]]]
98 # set the filename as the first argument below
99 args="('server.log',)"
100 class='FileHandler'
101 level='INFO'
102 formatter='message_only'
103
104 [[loggers]]
105 [[[sercom]]]
106 level='ERROR'
107 qualname='sercom'
108 handlers=['error_out']
109
110 [[[access]]]
111 level='INFO'
112 qualname='turbogears.access'
113 handlers=['access_out']
114 propagate=0