comparison development.ini @ 2016:6020e3884a58 beta

implements #212 moved default encoding variable into rhodecode-config. It's now possible to change default utf8 to some other encoding. - also added instance-id to config - update ini files
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 22 Feb 2012 04:30:26 +0200
parents 3da456a3a211
children 82a88013a3fd 04d26165c3d9
comparison
equal deleted inserted replaced
2015:5415d0de5970 2016:6020e3884a58
44 44
45 [app:main] 45 [app:main]
46 use = egg:rhodecode 46 use = egg:rhodecode
47 full_stack = true 47 full_stack = true
48 static_files = true 48 static_files = true
49 lang=en 49 lang = en
50 cache_dir = %(here)s/data 50 cache_dir = %(here)s/data
51 index_dir = %(here)s/data/index 51 index_dir = %(here)s/data/index
52 app_instance_uuid = develop 52 app_instance_uuid = rc-develop
53 cut_off_limit = 256000 53 cut_off_limit = 256000
54 force_https = false 54 force_https = false
55 commit_parse_limit = 25 55 commit_parse_limit = 25
56 use_gravatar = true 56 use_gravatar = true
57 container_auth_enabled = false 57 container_auth_enabled = false
58 proxypass_auth_enabled = false 58 proxypass_auth_enabled = false
59 default_encoding = utf8
59 60
60 ## overwrite schema of clone url 61 ## overwrite schema of clone url
61 ## available vars: 62 ## available vars:
62 ## scheme - http/https 63 ## scheme - http/https
63 ## user - current user 64 ## user - current user
84 ## prefix to add to link to indicate it's an url 85 ## prefix to add to link to indicate it's an url
85 ## #314 will be replaced by <issue_prefix><id> 86 ## #314 will be replaced by <issue_prefix><id>
86 87
87 issue_prefix = # 88 issue_prefix = #
88 89
90 ## instance-id prefix
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
93 ## all running rhodecode instances. Leave empty if you don't use it
94 instance_id =
89 95
90 #################################### 96 ####################################
91 ### CELERY CONFIG #### 97 ### CELERY CONFIG ####
92 #################################### 98 ####################################
93 use_celery = false 99 use_celery = false
177 beaker.session.auto = False 183 beaker.session.auto = False
178 184
179 ##true exire at browser close 185 ##true exire at browser close
180 #beaker.session.cookie_expires = 3600 186 #beaker.session.cookie_expires = 3600
181 187
182 188
183 ################################################################################ 189 ################################################################################
184 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ## 190 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
185 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ## 191 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
186 ## execute malicious code after an exception is raised. ## 192 ## execute malicious code after an exception is raised. ##
187 ################################################################################ 193 ################################################################################