comparison development.ini @ 4210:277684f23146 kallithea-2.2.5-rebrand

Rename some strings in defaults found in config files
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:05:47 -0400
parents 58e390e0cea4
children 24c0d584ba86
comparison
equal deleted inserted replaced
4209:de26de99ac5b 4210:277684f23146
13 ## any error reports after application crash ## 13 ## any error reports after application crash ##
14 ## Additionally those settings will be used by RhodeCode mailing system ## 14 ## Additionally those settings will be used by RhodeCode mailing system ##
15 ################################################################################ 15 ################################################################################
16 #email_to = admin@localhost 16 #email_to = admin@localhost
17 #error_email_from = paste_error@localhost 17 #error_email_from = paste_error@localhost
18 #app_email_from = rhodecode-noreply@localhost 18 #app_email_from = kallithea-noreply@localhost
19 #error_message = 19 #error_message =
20 #email_prefix = [RhodeCode] 20 #email_prefix = [RhodeCode]
21 21
22 #smtp_server = mail.server.com 22 #smtp_server = mail.server.com
23 #smtp_username = 23 #smtp_username =
52 #use = egg:gunicorn#main 52 #use = egg:gunicorn#main
53 ## number of process workers. You must set `instance_id = *` when this option 53 ## number of process workers. You must set `instance_id = *` when this option
54 ## is set to more than one worker 54 ## is set to more than one worker
55 #workers = 1 55 #workers = 1
56 ## process name 56 ## process name
57 #proc_name = rhodecode 57 #proc_name = kallithea
58 ## type of worker class, one of sync, eventlet, gevent, tornado 58 ## type of worker class, one of sync, eventlet, gevent, tornado
59 ## recommended for bigger setup is using of of other than sync one 59 ## recommended for bigger setup is using of of other than sync one
60 #worker_class = sync 60 #worker_class = sync
61 #max_requests = 5 61 #max_requests = 5
62 ## ammount of time a worker can handle request before it gets killed and 62 ## ammount of time a worker can handle request before it gets killed and
69 #socket = /tmp/uwsgi.sock 69 #socket = /tmp/uwsgi.sock
70 #master = true 70 #master = true
71 #http = 0.0.0.0:5000 71 #http = 0.0.0.0:5000
72 72
73 ## set as deamon and redirect all output to file 73 ## set as deamon and redirect all output to file
74 #daemonize = ./uwsgi_rhodecode.log 74 #daemonize = ./uwsgi_kallithea.log
75 75
76 ## master process PID 76 ## master process PID
77 #pidfile = ./uwsgi_rhodecode.pid 77 #pidfile = ./uwsgi_kallithea.pid
78 78
79 ## stats server with workers statistics, use uwsgitop 79 ## stats server with workers statistics, use uwsgitop
80 ## for monitoring, `uwsgitop 127.0.0.1:1717` 80 ## for monitoring, `uwsgitop 127.0.0.1:1717`
81 #stats = 127.0.0.1:1717 81 #stats = 127.0.0.1:1717
82 #memory-report = true 82 #memory-report = true
269 #issue_prefix_wiki = WIKI- 269 #issue_prefix_wiki = WIKI-
270 270
271 271
272 ## instance-id prefix 272 ## instance-id prefix
273 ## a prefix key for this instance used for cache invalidation when running 273 ## a prefix key for this instance used for cache invalidation when running
274 ## multiple instances of rhodecode, make sure it's globally unique for 274 ## multiple instances of kallithea, make sure it's globally unique for
275 ## all running rhodecode instances. Leave empty if you don't use it 275 ## all running kallithea instances. Leave empty if you don't use it
276 instance_id = 276 instance_id =
277 277
278 ## alternative return HTTP header for failed authentication. Default HTTP 278 ## alternative return HTTP header for failed authentication. Default HTTP
279 ## response is 401 HTTPUnauthorized. Currently HG clients have troubles with 279 ## response is 401 HTTPUnauthorized. Currently HG clients have troubles with
280 ## handling that. Set this variable to 403 to return HTTPForbidden 280 ## handling that. Set this variable to 403 to return HTTPForbidden
358 ## The storage uses the Container API 358 ## The storage uses the Container API
359 ## that is also used by the cache system. 359 ## that is also used by the cache system.
360 360
361 ## db session ## 361 ## db session ##
362 #beaker.session.type = ext:database 362 #beaker.session.type = ext:database
363 #beaker.session.sa.url = postgresql://postgres:qwe@localhost/rhodecode 363 #beaker.session.sa.url = postgresql://postgres:qwe@localhost/kallithea
364 #beaker.session.table_name = db_session 364 #beaker.session.table_name = db_session
365 365
366 ## encrypted cookie client side session, good for many instances ## 366 ## encrypted cookie client side session, good for many instances ##
367 #beaker.session.type = cookie 367 #beaker.session.type = cookie
368 368
369 ## file based cookies (default) ## 369 ## file based cookies (default) ##
370 #beaker.session.type = file 370 #beaker.session.type = file
371 371
372 beaker.session.key = rhodecode 372 beaker.session.key = kallithea
373 beaker.session.secret = develop-rc-uytcxaz 373 beaker.session.secret = develop-rc-uytcxaz
374 374
375 ## Secure encrypted cookie. Requires AES and AES python libraries 375 ## Secure encrypted cookie. Requires AES and AES python libraries
376 ## you must disable beaker.session.secret to use this 376 ## you must disable beaker.session.secret to use this
377 #beaker.session.encrypt_key = <key_for_encryption> 377 #beaker.session.encrypt_key = <key_for_encryption>
488 logview.pylons.util = #eee 488 logview.pylons.util = #eee
489 489
490 ######################################################### 490 #########################################################
491 ### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ### 491 ### DB CONFIGS - EACH DB WILL HAVE IT'S OWN CONFIG ###
492 ######################################################### 492 #########################################################
493 #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db?timeout=30 493 #sqlalchemy.db1.url = sqlite:///%(here)s/kallithea.db?timeout=30
494 sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/rhodecode 494 sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/kallithea
495 #sqlalchemy.db1.url = mysql://root:qweqwe@localhost/rhodecode 495 #sqlalchemy.db1.url = mysql://root:qweqwe@localhost/kallithea
496 sqlalchemy.db1.echo = false 496 sqlalchemy.db1.echo = false
497 sqlalchemy.db1.pool_recycle = 3600 497 sqlalchemy.db1.pool_recycle = 3600
498 sqlalchemy.db1.convert_unicode = true 498 sqlalchemy.db1.convert_unicode = true
499 499
500 ################################ 500 ################################