comparison development.ini @ 2165:dc2584ba5fbc

merged beta into default branch
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 28 Mar 2012 19:54:16 +0200
parents 82a88013a3fd 50aa7cb78cfe
children 63e58ef80ef1
comparison
equal deleted inserted replaced
2097:8fd6650bb436 2165:dc2584ba5fbc
91 ## a prefix key for this instance used for cache invalidation when running 91 ## a prefix key for this instance used for cache invalidation when running
92 ## multiple instances of rhodecode, make sure it's globally unique for 92 ## multiple instances of rhodecode, make sure it's globally unique for
93 ## all running rhodecode instances. Leave empty if you don't use it 93 ## all running rhodecode instances. Leave empty if you don't use it
94 instance_id = 94 instance_id =
95 95
96 ## alternative return HTTP header for failed authentication. Default HTTP
97 ## response is 401 HTTPUnauthorized. Currently HG clients have troubles with
98 ## handling that. Set this variable to 403 to return HTTPForbidden
99 auth_ret_code =
100
96 #################################### 101 ####################################
97 ### CELERY CONFIG #### 102 ### CELERY CONFIG ####
98 #################################### 103 ####################################
99 use_celery = false 104 use_celery = false
100 broker.host = localhost 105 broker.host = localhost
169 ## encrypted cookie session, good for many instances 174 ## encrypted cookie session, good for many instances
170 #beaker.session.type = cookie 175 #beaker.session.type = cookie
171 176
172 beaker.session.type = file 177 beaker.session.type = file
173 beaker.session.key = rhodecode 178 beaker.session.key = rhodecode
179 # secure cookie requires AES python libraries
174 #beaker.session.encrypt_key = g654dcno0-9873jhgfreyu 180 #beaker.session.encrypt_key = g654dcno0-9873jhgfreyu
175 #beaker.session.validate_key = 9712sds2212c--zxc123 181 #beaker.session.validate_key = 9712sds2212c--zxc123
176 beaker.session.timeout = 36000 182 beaker.session.timeout = 36000
177 beaker.session.httponly = true 183 beaker.session.httponly = true
178 184
205 ######################################################### 211 #########################################################
206 #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db 212 #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db
207 sqlalchemy.db1.url = postgresql://postgres:qwe@localhost/rhodecode 213 sqlalchemy.db1.url = postgresql://postgres:qwe@localhost/rhodecode
208 sqlalchemy.db1.echo = false 214 sqlalchemy.db1.echo = false
209 sqlalchemy.db1.pool_recycle = 3600 215 sqlalchemy.db1.pool_recycle = 3600
210 sqlalchemy.convert_unicode = true 216 sqlalchemy.db1.convert_unicode = true
211 217
212 ################################ 218 ################################
213 ### LOGGING CONFIGURATION #### 219 ### LOGGING CONFIGURATION ####
214 ################################ 220 ################################
215 [loggers] 221 [loggers]
216 keys = root, routes, rhodecode, sqlalchemy, beaker, templates 222 keys = root, routes, rhodecode, sqlalchemy, beaker, templates, whoosh_indexer
217 223
218 [handlers] 224 [handlers]
219 keys = console, console_sql 225 keys = console, console_sql
220 226
221 [formatters] 227 [formatters]
257 level = INFO 263 level = INFO
258 handlers = console_sql 264 handlers = console_sql
259 qualname = sqlalchemy.engine 265 qualname = sqlalchemy.engine
260 propagate = 0 266 propagate = 0
261 267
268 [logger_whoosh_indexer]
269 level = DEBUG
270 handlers =
271 qualname = whoosh_indexer
272 propagate = 1
273
262 ############## 274 ##############
263 ## HANDLERS ## 275 ## HANDLERS ##
264 ############## 276 ##############
265 277
266 [handler_console] 278 [handler_console]