comparison production.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 = prod1234 52 app_instance_uuid = rc-production
53 cut_off_limit = 256000 53 cut_off_limit = 256000
54 force_https = false 54 force_https = false
55 commit_parse_limit = 50 55 commit_parse_limit = 50
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
163 ## encrypted cookie session, good for many instances 169 ## encrypted cookie session, good for many instances
164 #beaker.session.type = cookie 170 #beaker.session.type = cookie
165 171
166 beaker.session.type = file 172 beaker.session.type = file
167 beaker.session.key = rhodecode 173 beaker.session.key = rhodecode
174 # secure cookie requires AES python libraries
168 #beaker.session.encrypt_key = g654dcno0-9873jhgfreyu 175 #beaker.session.encrypt_key = g654dcno0-9873jhgfreyu
169 #beaker.session.validate_key = 9712sds2212c--zxc123 176 #beaker.session.validate_key = 9712sds2212c--zxc123
170 beaker.session.timeout = 36000 177 beaker.session.timeout = 36000
171 beaker.session.httponly = true 178 beaker.session.httponly = true
172 179