##// END OF EJS Templates
configs: added info how to set cache_license to redis
super-admin -
r5620:b278fbe5 default
parent child Browse files
Show More
@@ -1,927 +1,957 b''
1 1
2 2 ; #########################################
3 3 ; RHODECODE COMMUNITY EDITION CONFIGURATION
4 4 ; #########################################
5 5
6 6 [DEFAULT]
7 7 ; Debug flag sets all loggers to debug, and enables request tracking
8 8 debug = true
9 9
10 10 ; ########################################################################
11 11 ; EMAIL CONFIGURATION
12 12 ; These settings will be used by the RhodeCode mailing system
13 13 ; ########################################################################
14 14
15 15 ; prefix all emails subjects with given prefix, helps filtering out emails
16 16 #email_prefix = [RhodeCode]
17 17
18 18 ; email FROM address all mails will be sent
19 19 #app_email_from = rhodecode-noreply@localhost
20 20
21 21 #smtp_server = mail.server.com
22 22 #smtp_username =
23 23 #smtp_password =
24 24 #smtp_port =
25 25 #smtp_use_tls = false
26 26 #smtp_use_ssl = true
27 27
28 28 [server:main]
29 29 ; COMMON HOST/IP CONFIG, This applies mostly to develop setup,
30 30 ; Host port for gunicorn are controlled by gunicorn_conf.py
31 31 host = 127.0.0.1
32 32 port = 10020
33 33
34 34
35 35 ; ###########################
36 36 ; GUNICORN APPLICATION SERVER
37 37 ; ###########################
38 38
39 39 ; run with gunicorn --config gunicorn_conf.py --paste rhodecode.ini
40 40
41 41 ; Module to use, this setting shouldn't be changed
42 42 use = egg:gunicorn#main
43 43
44 44 ; Prefix middleware for RhodeCode.
45 45 ; recommended when using proxy setup.
46 46 ; allows to set RhodeCode under a prefix in server.
47 47 ; eg https://server.com/custom_prefix. Enable `filter-with =` option below as well.
48 48 ; And set your prefix like: `prefix = /custom_prefix`
49 49 ; be sure to also set beaker.session.cookie_path = /custom_prefix if you need
50 50 ; to make your cookies only work on prefix url
51 51 [filter:proxy-prefix]
52 52 use = egg:PasteDeploy#prefix
53 53 prefix = /
54 54
55 55 [app:main]
56 56 ; The %(here)s variable will be replaced with the absolute path of parent directory
57 57 ; of this file
58 58 ; Each option in the app:main can be override by an environmental variable
59 59 ;
60 60 ;To override an option:
61 61 ;
62 62 ;RC_<KeyName>
63 63 ;Everything should be uppercase, . and - should be replaced by _.
64 64 ;For example, if you have these configuration settings:
65 65 ;rc_cache.repo_object.backend = foo
66 66 ;can be overridden by
67 67 ;export RC_CACHE_REPO_OBJECT_BACKEND=foo
68 68
69 69 use = egg:rhodecode-enterprise-ce
70 70
71 71 ; enable proxy prefix middleware, defined above
72 72 #filter-with = proxy-prefix
73 73
74 74 ; control if environmental variables to be expanded into the .ini settings
75 75 #rhodecode.env_expand = true
76 76
77 77 ; #############
78 78 ; DEBUG OPTIONS
79 79 ; #############
80 80
81 81 pyramid.reload_templates = true
82 82
83 83 # During development the we want to have the debug toolbar enabled
84 84 pyramid.includes =
85 85 pyramid_debugtoolbar
86 86
87 87 debugtoolbar.hosts = 0.0.0.0/0
88 88 debugtoolbar.exclude_prefixes =
89 89 /css
90 90 /fonts
91 91 /images
92 92 /js
93 93
94 94 ## RHODECODE PLUGINS ##
95 95 rhodecode.includes =
96 96 rhodecode.api
97 97
98 98
99 99 # api prefix url
100 100 rhodecode.api.url = /_admin/api
101 101
102 102 ; enable debug style page
103 103 debug_style = true
104 104
105 105 ; #################
106 106 ; END DEBUG OPTIONS
107 107 ; #################
108 108
109 109 ; encryption key used to encrypt social plugin tokens,
110 110 ; remote_urls with credentials etc, if not set it defaults to
111 111 ; `beaker.session.secret`
112 112 #rhodecode.encrypted_values.secret =
113 113
114 114 ; decryption strict mode (enabled by default). It controls if decryption raises
115 115 ; `SignatureVerificationError` in case of wrong key, or damaged encryption data.
116 116 #rhodecode.encrypted_values.strict = false
117 117
118 118 ; Pick algorithm for encryption. Either fernet (more secure) or aes (default)
119 119 ; fernet is safer, and we strongly recommend switching to it.
120 120 ; Due to backward compatibility aes is used as default.
121 121 #rhodecode.encrypted_values.algorithm = fernet
122 122
123 123 ; Return gzipped responses from RhodeCode (static files/application)
124 124 gzip_responses = false
125 125
126 126 ; Auto-generate javascript routes file on startup
127 127 generate_js_files = false
128 128
129 129 ; System global default language.
130 130 ; All available languages: en (default), be, de, es, fr, it, ja, pl, pt, ru, zh
131 131 lang = en
132 132
133 133 ; Perform a full repository scan and import on each server start.
134 134 ; Settings this to true could lead to very long startup time.
135 135 startup.import_repos = false
136 136
137 137 ; URL at which the application is running. This is used for Bootstrapping
138 138 ; requests in context when no web request is available. Used in ishell, or
139 139 ; SSH calls. Set this for events to receive proper url for SSH calls.
140 140 app.base_url = http://rhodecode.local
141 141
142 142 ; Host at which the Service API is running.
143 143 app.service_api.host = http://rhodecode.local:10020
144 144
145 145 ; Secret for Service API authentication.
146 146 app.service_api.token =
147 147
148 148 ; Unique application ID. Should be a random unique string for security.
149 149 app_instance_uuid = rc-production
150 150
151 151 ; Cut off limit for large diffs (size in bytes). If overall diff size on
152 152 ; commit, or pull request exceeds this limit this diff will be displayed
153 153 ; partially. E.g 512000 == 512Kb
154 154 cut_off_limit_diff = 512000
155 155
156 156 ; Cut off limit for large files inside diffs (size in bytes). Each individual
157 157 ; file inside diff which exceeds this limit will be displayed partially.
158 158 ; E.g 128000 == 128Kb
159 159 cut_off_limit_file = 128000
160 160
161 161 ; Use cached version of vcs repositories everywhere. Recommended to be `true`
162 162 vcs_full_cache = true
163 163
164 164 ; Force https in RhodeCode, fixes https redirects, assumes it's always https.
165 165 ; Normally this is controlled by proper flags sent from http server such as Nginx or Apache
166 166 force_https = false
167 167
168 168 ; use Strict-Transport-Security headers
169 169 use_htsts = false
170 170
171 171 ; Set to true if your repos are exposed using the dumb protocol
172 172 git_update_server_info = false
173 173
174 174 ; RSS/ATOM feed options
175 175 rss_cut_off_limit = 256000
176 176 rss_items_per_page = 10
177 177 rss_include_diff = false
178 178
179 179 ; gist URL alias, used to create nicer urls for gist. This should be an
180 180 ; url that does rewrites to _admin/gists/{gistid}.
181 181 ; example: http://gist.rhodecode.org/{gistid}. Empty means use the internal
182 182 ; RhodeCode url, ie. http[s]://rhodecode.server/_admin/gists/{gistid}
183 183 gist_alias_url =
184 184
185 185 ; List of views (using glob pattern syntax) that AUTH TOKENS could be
186 186 ; used for access.
187 187 ; Adding ?auth_token=TOKEN_HASH to the url authenticates this request as if it
188 188 ; came from the the logged in user who own this authentication token.
189 189 ; Additionally @TOKEN syntax can be used to bound the view to specific
190 190 ; authentication token. Such view would be only accessible when used together
191 191 ; with this authentication token
192 192 ; list of all views can be found under `/_admin/permissions/auth_token_access`
193 193 ; The list should be "," separated and on a single line.
194 194 ; Most common views to enable:
195 195
196 196 # RepoCommitsView:repo_commit_download
197 197 # RepoCommitsView:repo_commit_patch
198 198 # RepoCommitsView:repo_commit_raw
199 199 # RepoCommitsView:repo_commit_raw@TOKEN
200 200 # RepoFilesView:repo_files_diff
201 201 # RepoFilesView:repo_archivefile
202 202 # RepoFilesView:repo_file_raw
203 203 # GistView:*
204 204 api_access_controllers_whitelist =
205 205
206 206 ; Default encoding used to convert from and to unicode
207 207 ; can be also a comma separated list of encoding in case of mixed encodings
208 208 default_encoding = UTF-8
209 209
210 210 ; instance-id prefix
211 211 ; a prefix key for this instance used for cache invalidation when running
212 212 ; multiple instances of RhodeCode, make sure it's globally unique for
213 213 ; all running RhodeCode instances. Leave empty if you don't use it
214 214 instance_id =
215 215
216 216 ; Fallback authentication plugin. Set this to a plugin ID to force the usage
217 217 ; of an authentication plugin also if it is disabled by it's settings.
218 218 ; This could be useful if you are unable to log in to the system due to broken
219 219 ; authentication settings. Then you can enable e.g. the internal RhodeCode auth
220 220 ; module to log in again and fix the settings.
221 221 ; Available builtin plugin IDs (hash is part of the ID):
222 222 ; egg:rhodecode-enterprise-ce#rhodecode
223 223 ; egg:rhodecode-enterprise-ce#pam
224 224 ; egg:rhodecode-enterprise-ce#ldap
225 225 ; egg:rhodecode-enterprise-ce#jasig_cas
226 226 ; egg:rhodecode-enterprise-ce#headers
227 227 ; egg:rhodecode-enterprise-ce#crowd
228 228
229 229 #rhodecode.auth_plugin_fallback = egg:rhodecode-enterprise-ce#rhodecode
230 230
231 231 ; Flag to control loading of legacy plugins in py:/path format
232 232 auth_plugin.import_legacy_plugins = true
233 233
234 234 ; alternative return HTTP header for failed authentication. Default HTTP
235 235 ; response is 401 HTTPUnauthorized. Currently HG clients have troubles with
236 236 ; handling that causing a series of failed authentication calls.
237 237 ; Set this variable to 403 to return HTTPForbidden, or any other HTTP code
238 238 ; This will be served instead of default 401 on bad authentication
239 239 auth_ret_code =
240 240
241 241 ; use special detection method when serving auth_ret_code, instead of serving
242 242 ; ret_code directly, use 401 initially (Which triggers credentials prompt)
243 243 ; and then serve auth_ret_code to clients
244 244 auth_ret_code_detection = false
245 245
246 246 ; locking return code. When repository is locked return this HTTP code. 2XX
247 247 ; codes don't break the transactions while 4XX codes do
248 248 lock_ret_code = 423
249 249
250 250 ; Filesystem location were repositories should be stored
251 251 repo_store.path = /var/opt/rhodecode_repo_store
252 252
253 253 ; allows to setup custom hooks in settings page
254 254 allow_custom_hooks_settings = true
255 255
256 256 ; Generated license token required for EE edition license.
257 257 ; New generated token value can be found in Admin > settings > license page.
258 258 license_token =
259 259
260 260 ; This flag hides sensitive information on the license page such as token, and license data
261 261 license.hide_license_info = false
262 262
263 263 ; Import EE license from this license path
264 264 #license.import_path = %(here)s/rhodecode_enterprise.license
265 265
266 266 ; import license 'if-missing' or 'force' (always override)
267 267 ; if-missing means apply license if it doesn't exist. 'force' option always overrides it
268 268 license.import_path_mode = if-missing
269 269
270 270 ; supervisor connection uri, for managing supervisor and logs.
271 271 supervisor.uri =
272 272
273 273 ; supervisord group name/id we only want this RC instance to handle
274 274 supervisor.group_id = dev
275 275
276 276 ; Display extended labs settings
277 277 labs_settings_active = true
278 278
279 279 ; Custom exception store path, defaults to TMPDIR
280 280 ; This is used to store exception from RhodeCode in shared directory
281 281 #exception_tracker.store_path =
282 282
283 283 ; Send email with exception details when it happens
284 284 #exception_tracker.send_email = false
285 285
286 286 ; Comma separated list of recipients for exception emails,
287 287 ; e.g admin@rhodecode.com,devops@rhodecode.com
288 288 ; Can be left empty, then emails will be sent to ALL super-admins
289 289 #exception_tracker.send_email_recipients =
290 290
291 291 ; optional prefix to Add to email Subject
292 292 #exception_tracker.email_prefix = [RHODECODE ERROR]
293 293
294 294 ; NOTE: this setting IS DEPRECATED:
295 295 ; file_store backend is always enabled
296 296 #file_store.enabled = true
297 297
298 298 ; NOTE: this setting IS DEPRECATED:
299 299 ; file_store.backend = X -> use `file_store.backend.type = filesystem_v2` instead
300 300 ; Storage backend, available options are: local
301 301 #file_store.backend = local
302 302
303 303 ; NOTE: this setting IS DEPRECATED:
304 304 ; file_store.storage_path = X -> use `file_store.filesystem_v2.storage_path = X` instead
305 305 ; path to store the uploaded binaries and artifacts
306 306 #file_store.storage_path = /var/opt/rhodecode_data/file_store
307 307
308 308 ; Artifacts file-store, is used to store comment attachments and artifacts uploads.
309 309 ; file_store backend type: filesystem_v1, filesystem_v2 or objectstore (s3-based) are available as options
310 310 ; filesystem_v1 is backwards compat with pre 5.1 storage changes
311 311 ; new installations should choose filesystem_v2 or objectstore (s3-based), pick filesystem when migrating from
312 312 ; previous installations to keep the artifacts without a need of migration
313 313 #file_store.backend.type = filesystem_v2
314 314
315 315 ; filesystem options...
316 316 #file_store.filesystem_v1.storage_path = /var/opt/rhodecode_data/artifacts_file_store
317 317
318 318 ; filesystem_v2 options...
319 319 #file_store.filesystem_v2.storage_path = /var/opt/rhodecode_data/artifacts_file_store
320 320 #file_store.filesystem_v2.shards = 8
321 321
322 322 ; objectstore options...
323 323 ; url for s3 compatible storage that allows to upload artifacts
324 324 ; e.g http://minio:9000
325 325 #file_store.backend.type = objectstore
326 326 #file_store.objectstore.url = http://s3-minio:9000
327 327
328 328 ; a top-level bucket to put all other shards in
329 329 ; objects will be stored in rhodecode-file-store/shard-N based on the bucket_shards number
330 330 #file_store.objectstore.bucket = rhodecode-file-store
331 331
332 332 ; number of sharded buckets to create to distribute archives across
333 333 ; default is 8 shards
334 334 #file_store.objectstore.bucket_shards = 8
335 335
336 336 ; key for s3 auth
337 337 #file_store.objectstore.key = s3admin
338 338
339 339 ; secret for s3 auth
340 340 #file_store.objectstore.secret = s3secret4
341 341
342 342 ;region for s3 storage
343 343 #file_store.objectstore.region = eu-central-1
344 344
345 345 ; Redis url to acquire/check generation of archives locks
346 346 archive_cache.locking.url = redis://redis:6379/1
347 347
348 348 ; Storage backend, only 'filesystem' and 'objectstore' are available now
349 349 archive_cache.backend.type = filesystem
350 350
351 351 ; url for s3 compatible storage that allows to upload artifacts
352 352 ; e.g http://minio:9000
353 353 archive_cache.objectstore.url = http://s3-minio:9000
354 354
355 355 ; key for s3 auth
356 356 archive_cache.objectstore.key = key
357 357
358 358 ; secret for s3 auth
359 359 archive_cache.objectstore.secret = secret
360 360
361 361 ;region for s3 storage
362 362 archive_cache.objectstore.region = eu-central-1
363 363
364 364 ; number of sharded buckets to create to distribute archives across
365 365 ; default is 8 shards
366 366 archive_cache.objectstore.bucket_shards = 8
367 367
368 368 ; a top-level bucket to put all other shards in
369 369 ; objects will be stored in rhodecode-archive-cache/shard-N based on the bucket_shards number
370 370 archive_cache.objectstore.bucket = rhodecode-archive-cache
371 371
372 372 ; if true, this cache will try to retry with retry_attempts=N times waiting retry_backoff time
373 373 archive_cache.objectstore.retry = false
374 374
375 375 ; number of seconds to wait for next try using retry
376 376 archive_cache.objectstore.retry_backoff = 1
377 377
378 378 ; how many tries do do a retry fetch from this backend
379 379 archive_cache.objectstore.retry_attempts = 10
380 380
381 381 ; Default is $cache_dir/archive_cache if not set
382 382 ; Generated repo archives will be cached at this location
383 383 ; and served from the cache during subsequent requests for the same archive of
384 384 ; the repository. This path is important to be shared across filesystems and with
385 385 ; RhodeCode and vcsserver
386 386 archive_cache.filesystem.store_dir = /var/opt/rhodecode_data/archive_cache
387 387
388 388 ; The limit in GB sets how much data we cache before recycling last used, defaults to 10 gb
389 389 archive_cache.filesystem.cache_size_gb = 1
390 390
391 391 ; Eviction policy used to clear out after cache_size_gb limit is reached
392 392 archive_cache.filesystem.eviction_policy = least-recently-stored
393 393
394 394 ; By default cache uses sharding technique, this specifies how many shards are there
395 395 ; default is 8 shards
396 396 archive_cache.filesystem.cache_shards = 8
397 397
398 398 ; if true, this cache will try to retry with retry_attempts=N times waiting retry_backoff time
399 399 archive_cache.filesystem.retry = false
400 400
401 401 ; number of seconds to wait for next try using retry
402 402 archive_cache.filesystem.retry_backoff = 1
403 403
404 404 ; how many tries do do a retry fetch from this backend
405 405 archive_cache.filesystem.retry_attempts = 10
406 406
407 407
408 408 ; #############
409 409 ; CELERY CONFIG
410 410 ; #############
411 411
412 412 ; manually run celery: /path/to/celery worker --task-events --beat --app rhodecode.lib.celerylib.loader --scheduler rhodecode.lib.celerylib.scheduler.RcScheduler --loglevel DEBUG --ini /path/to/rhodecode.ini
413 413
414 414 use_celery = true
415 415
416 416 ; path to store schedule database
417 417 #celerybeat-schedule.path =
418 418
419 419 ; connection url to the message broker (default redis)
420 420 celery.broker_url = redis://redis:6379/8
421 421
422 422 ; results backend to get results for (default redis)
423 423 celery.result_backend = redis://redis:6379/8
424 424
425 425 ; rabbitmq example
426 426 #celery.broker_url = amqp://rabbitmq:qweqwe@localhost:5672/rabbitmqhost
427 427
428 428 ; maximum tasks to execute before worker restart
429 429 celery.max_tasks_per_child = 20
430 430
431 431 ; tasks will never be sent to the queue, but executed locally instead.
432 432 celery.task_always_eager = false
433 433
434 434 ; #############
435 435 ; DOGPILE CACHE
436 436 ; #############
437 437
438 438 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
439 439 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
440 440 cache_dir = /var/opt/rhodecode_data
441 441
442 442 ; *********************************************
443 443 ; `sql_cache_short` cache for heavy SQL queries
444 444 ; Only supported backend is `memory_lru`
445 445 ; *********************************************
446 446 rc_cache.sql_cache_short.backend = dogpile.cache.rc.memory_lru
447 447 rc_cache.sql_cache_short.expiration_time = 30
448 448
449 449
450 450 ; *****************************************************
451 451 ; `cache_repo_longterm` cache for repo object instances
452 452 ; Only supported backend is `memory_lru`
453 453 ; *****************************************************
454 454 rc_cache.cache_repo_longterm.backend = dogpile.cache.rc.memory_lru
455 455 ; by default we use 30 Days, cache is still invalidated on push
456 456 rc_cache.cache_repo_longterm.expiration_time = 2592000
457 457 ; max items in LRU cache, set to smaller number to save memory, and expire last used caches
458 458 rc_cache.cache_repo_longterm.max_size = 10000
459 459
460 460
461 461 ; *********************************************
462 462 ; `cache_general` cache for general purpose use
463 463 ; for simplicity use rc.file_namespace backend,
464 464 ; for performance and scale use rc.redis
465 465 ; *********************************************
466 466 rc_cache.cache_general.backend = dogpile.cache.rc.file_namespace
467 467 rc_cache.cache_general.expiration_time = 43200
468 468 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
469 469 #rc_cache.cache_general.arguments.filename = /tmp/cache_general_db
470 470
471 471 ; alternative `cache_general` redis backend with distributed lock
472 472 #rc_cache.cache_general.backend = dogpile.cache.rc.redis
473 473 #rc_cache.cache_general.expiration_time = 300
474 474
475 475 ; redis_expiration_time needs to be greater then expiration_time
476 476 #rc_cache.cache_general.arguments.redis_expiration_time = 7200
477 477
478 478 #rc_cache.cache_general.arguments.host = localhost
479 479 #rc_cache.cache_general.arguments.port = 6379
480 480 #rc_cache.cache_general.arguments.db = 0
481 481 #rc_cache.cache_general.arguments.socket_timeout = 30
482 482 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
483 483 #rc_cache.cache_general.arguments.distributed_lock = true
484 484
485 485 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
486 486 #rc_cache.cache_general.arguments.lock_auto_renewal = true
487 487
488 488 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
489 489 #rc_cache.cache_general.arguments.key_prefix = custom-prefix-
490 490
491 491
492 492 ; *************************************************
493 493 ; `cache_perms` cache for permission tree, auth TTL
494 494 ; for simplicity use rc.file_namespace backend,
495 495 ; for performance and scale use rc.redis
496 496 ; *************************************************
497 497 rc_cache.cache_perms.backend = dogpile.cache.rc.file_namespace
498 498 rc_cache.cache_perms.expiration_time = 3600
499 499 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
500 500 #rc_cache.cache_perms.arguments.filename = /tmp/cache_perms_db
501 501
502 502 ; alternative `cache_perms` redis backend with distributed lock
503 503 #rc_cache.cache_perms.backend = dogpile.cache.rc.redis
504 504 #rc_cache.cache_perms.expiration_time = 300
505 505
506 506 ; redis_expiration_time needs to be greater then expiration_time
507 507 #rc_cache.cache_perms.arguments.redis_expiration_time = 7200
508 508
509 509 #rc_cache.cache_perms.arguments.host = localhost
510 510 #rc_cache.cache_perms.arguments.port = 6379
511 511 #rc_cache.cache_perms.arguments.db = 0
512 512 #rc_cache.cache_perms.arguments.socket_timeout = 30
513 513 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
514 514 #rc_cache.cache_perms.arguments.distributed_lock = true
515 515
516 516 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
517 517 #rc_cache.cache_perms.arguments.lock_auto_renewal = true
518 518
519 519 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
520 520 #rc_cache.cache_perms.arguments.key_prefix = custom-prefix-
521 521
522 522
523 523 ; ***************************************************
524 524 ; `cache_repo` cache for file tree, Readme, RSS FEEDS
525 525 ; for simplicity use rc.file_namespace backend,
526 526 ; for performance and scale use rc.redis
527 527 ; ***************************************************
528 528 rc_cache.cache_repo.backend = dogpile.cache.rc.file_namespace
529 529 rc_cache.cache_repo.expiration_time = 2592000
530 530 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
531 531 #rc_cache.cache_repo.arguments.filename = /tmp/cache_repo_db
532 532
533 533 ; alternative `cache_repo` redis backend with distributed lock
534 534 #rc_cache.cache_repo.backend = dogpile.cache.rc.redis
535 535 #rc_cache.cache_repo.expiration_time = 2592000
536 536
537 537 ; redis_expiration_time needs to be greater then expiration_time
538 538 #rc_cache.cache_repo.arguments.redis_expiration_time = 2678400
539 539
540 540 #rc_cache.cache_repo.arguments.host = localhost
541 541 #rc_cache.cache_repo.arguments.port = 6379
542 542 #rc_cache.cache_repo.arguments.db = 1
543 543 #rc_cache.cache_repo.arguments.socket_timeout = 30
544 544 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
545 545 #rc_cache.cache_repo.arguments.distributed_lock = true
546 546
547 547 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
548 548 #rc_cache.cache_repo.arguments.lock_auto_renewal = true
549 549
550 550 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
551 551 #rc_cache.cache_repo.arguments.key_prefix = custom-prefix-
552 552
553 ; *********************************************
554 ; `cache_license` cache for storing license info
555 ; for simplicity use rc.file_namespace backend,
556 ; for performance and scale use rc.redis
557 ; *********************************************
558 rc_cache.cache_license.backend = dogpile.cache.rc.file_namespace
559 rc_cache.cache_license.expiration_time = 300
560 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
561 #rc_cache.cache_license.arguments.filename = /tmp/cache_general_db
562
563 ; alternative `cache_license` redis backend with distributed lock
564 #rc_cache.cache_license.backend = dogpile.cache.rc.redis
565 #rc_cache.cache_license.expiration_time = 300
566
567 ; redis_expiration_time needs to be greater then expiration_time
568 #rc_cache.cache_license.arguments.redis_expiration_time = 360
569
570 #rc_cache.cache_license.arguments.host = localhost
571 #rc_cache.cache_license.arguments.port = 6379
572 #rc_cache.cache_license.arguments.db = 0
573 #rc_cache.cache_license.arguments.socket_timeout = 30
574 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
575 #rc_cache.cache_license.arguments.distributed_lock = true
576
577 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
578 #rc_cache.cache_license.arguments.lock_auto_renewal = true
579
580 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
581 #rc_cache.cache_license.arguments.key_prefix = custom-prefix-
582
553 583
554 584 ; ##############
555 585 ; BEAKER SESSION
556 586 ; ##############
557 587
558 588 ; beaker.session.type is type of storage options for the logged users sessions. Current allowed
559 589 ; types are file, ext:redis, ext:database, ext:memcached
560 590 ; Fastest ones are ext:redis and ext:database, DO NOT use memory type for session
561 591 #beaker.session.type = file
562 592 #beaker.session.data_dir = /var/opt/rhodecode_data/sessions
563 593
564 594 ; Redis based sessions
565 595 beaker.session.type = ext:redis
566 596 beaker.session.url = redis://redis:6379/2
567 597
568 598 ; DB based session, fast, and allows easy management over logged in users
569 599 #beaker.session.type = ext:database
570 600 #beaker.session.table_name = db_session
571 601 #beaker.session.sa.url = postgresql://postgres:secret@localhost/rhodecode
572 602 #beaker.session.sa.url = mysql://root:secret@127.0.0.1/rhodecode
573 603 #beaker.session.sa.pool_recycle = 3600
574 604 #beaker.session.sa.echo = false
575 605
576 606 beaker.session.key = rhodecode
577 607 beaker.session.secret = develop-rc-uytcxaz
578 608 beaker.session.lock_dir = /data_ramdisk/lock
579 609
580 610 ; Secure encrypted cookie. Requires AES and AES python libraries
581 611 ; you must disable beaker.session.secret to use this
582 612 #beaker.session.encrypt_key = key_for_encryption
583 613 #beaker.session.validate_key = validation_key
584 614
585 615 ; Sets session as invalid (also logging out user) if it haven not been
586 616 ; accessed for given amount of time in seconds
587 617 beaker.session.timeout = 2592000
588 618 beaker.session.httponly = true
589 619
590 620 ; Path to use for the cookie. Set to prefix if you use prefix middleware
591 621 #beaker.session.cookie_path = /custom_prefix
592 622
593 623 ; Set https secure cookie
594 624 beaker.session.secure = false
595 625
596 626 ; default cookie expiration time in seconds, set to `true` to set expire
597 627 ; at browser close
598 628 #beaker.session.cookie_expires = 3600
599 629
600 630 ; #############################
601 631 ; SEARCH INDEXING CONFIGURATION
602 632 ; #############################
603 633
604 634 ; Full text search indexer is available in rhodecode-tools under
605 635 ; `rhodecode-tools index` command
606 636
607 637 ; WHOOSH Backend, doesn't require additional services to run
608 638 ; it works good with few dozen repos
609 639 search.module = rhodecode.lib.index.whoosh
610 640 search.location = %(here)s/data/index
611 641
612 642 ; ####################
613 643 ; CHANNELSTREAM CONFIG
614 644 ; ####################
615 645
616 646 ; channelstream enables persistent connections and live notification
617 647 ; in the system. It's also used by the chat system
618 648
619 649 channelstream.enabled = true
620 650
621 651 ; server address for channelstream server on the backend
622 652 channelstream.server = channelstream:9800
623 653
624 654 ; location of the channelstream server from outside world
625 655 ; use ws:// for http or wss:// for https. This address needs to be handled
626 656 ; by external HTTP server such as Nginx or Apache
627 657 ; see Nginx/Apache configuration examples in our docs
628 658 channelstream.ws_url = ws://rhodecode.yourserver.com/_channelstream
629 659 channelstream.secret = ENV_GENERATED
630 660 channelstream.history.location = /var/opt/rhodecode_data/channelstream_history
631 661
632 662 ; Internal application path that Javascript uses to connect into.
633 663 ; If you use proxy-prefix the prefix should be added before /_channelstream
634 664 channelstream.proxy_path = /_channelstream
635 665
636 666
637 667 ; ##############################
638 668 ; MAIN RHODECODE DATABASE CONFIG
639 669 ; ##############################
640 670
641 671 #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db?timeout=30
642 672 #sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/rhodecode
643 673 #sqlalchemy.db1.url = mysql://root:qweqwe@localhost/rhodecode?charset=utf8
644 674 ; pymysql is an alternative driver for MySQL, use in case of problems with default one
645 675 #sqlalchemy.db1.url = mysql+pymysql://root:qweqwe@localhost/rhodecode
646 676
647 677 sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db?timeout=30
648 678
649 679 ; see sqlalchemy docs for other advanced settings
650 680 ; print the sql statements to output
651 681 sqlalchemy.db1.echo = false
652 682
653 683 ; recycle the connections after this amount of seconds
654 684 sqlalchemy.db1.pool_recycle = 3600
655 685
656 686 ; the number of connections to keep open inside the connection pool.
657 687 ; 0 indicates no limit
658 688 ; the general calculus with gevent is:
659 689 ; if your system allows 500 concurrent greenlets (max_connections) that all do database access,
660 690 ; then increase pool size + max overflow so that they add up to 500.
661 691 #sqlalchemy.db1.pool_size = 5
662 692
663 693 ; The number of connections to allow in connection pool "overflow", that is
664 694 ; connections that can be opened above and beyond the pool_size setting,
665 695 ; which defaults to five.
666 696 #sqlalchemy.db1.max_overflow = 10
667 697
668 698 ; Connection check ping, used to detect broken database connections
669 699 ; could be enabled to better handle cases if MySQL has gone away errors
670 700 #sqlalchemy.db1.ping_connection = true
671 701
672 702 ; ##########
673 703 ; VCS CONFIG
674 704 ; ##########
675 705 vcs.server.enable = true
676 706 vcs.server = vcsserver:10010
677 707
678 708 ; Web server connectivity protocol, responsible for web based VCS operations
679 709 ; Available protocols are:
680 710 ; `http` - use http-rpc backend (default)
681 711 vcs.server.protocol = http
682 712
683 713 ; Push/Pull operations protocol, available options are:
684 714 ; `http` - use http-rpc backend (default)
685 715 vcs.scm_app_implementation = http
686 716
687 717 ; Push/Pull operations hooks protocol, available options are:
688 718 ; `http` - use http-rpc backend (default)
689 719 ; `celery` - use celery based hooks
690 720 #DEPRECATED:vcs.hooks.protocol = http
691 721 vcs.hooks.protocol.v2 = celery
692 722
693 723 ; Host on which this instance is listening for hooks. vcsserver will call this host to pull/push hooks so it should be
694 724 ; accessible via network.
695 725 ; Use vcs.hooks.host = "*" to bind to current hostname (for Docker)
696 726 vcs.hooks.host = *
697 727
698 728 ; Start VCSServer with this instance as a subprocess, useful for development
699 729 vcs.start_server = false
700 730
701 731 ; List of enabled VCS backends, available options are:
702 732 ; `hg` - mercurial
703 733 ; `git` - git
704 734 ; `svn` - subversion
705 735 vcs.backends = hg, git, svn
706 736
707 737 ; Wait this number of seconds before killing connection to the vcsserver
708 738 vcs.connection_timeout = 3600
709 739
710 740 ; Cache flag to cache vcsserver remote calls locally
711 741 ; It uses cache_region `cache_repo`
712 742 vcs.methods.cache = true
713 743
714 744 ; Filesystem location where Git lfs objects should be stored
715 745 vcs.git.lfs.storage_location = /var/opt/rhodecode_repo_store/.cache/git_lfs_store
716 746
717 747 ; Filesystem location where Mercurial largefile objects should be stored
718 748 vcs.hg.largefiles.storage_location = /var/opt/rhodecode_repo_store/.cache/hg_largefiles_store
719 749
720 750 ; ####################################################
721 751 ; Subversion proxy support (mod_dav_svn)
722 752 ; Maps RhodeCode repo groups into SVN paths for Apache
723 753 ; ####################################################
724 754
725 755 ; Compatibility version when creating SVN repositories. Defaults to newest version when commented out.
726 756 ; Set a numeric version for your current SVN e.g 1.8, or 1.12
727 757 ; Legacy available options are: pre-1.4-compatible, pre-1.5-compatible, pre-1.6-compatible, pre-1.8-compatible, pre-1.9-compatible
728 758 #vcs.svn.compatible_version = 1.8
729 759
730 760 ; Redis connection settings for svn integrations logic
731 761 ; This connection string needs to be the same on ce and vcsserver
732 762 vcs.svn.redis_conn = redis://redis:6379/0
733 763
734 764 ; Enable SVN proxy of requests over HTTP
735 765 vcs.svn.proxy.enabled = true
736 766
737 767 ; host to connect to running SVN subsystem
738 768 vcs.svn.proxy.host = http://svn:8090
739 769
740 770 ; Enable or disable the config file generation.
741 771 svn.proxy.generate_config = true
742 772
743 773 ; Generate config file with `SVNListParentPath` set to `On`.
744 774 svn.proxy.list_parent_path = true
745 775
746 776 ; Set location and file name of generated config file.
747 777 svn.proxy.config_file_path = /etc/rhodecode/conf/svn/mod_dav_svn.conf
748 778
749 779 ; alternative mod_dav config template. This needs to be a valid mako template
750 780 ; Example template can be found in the source code:
751 781 ; rhodecode/apps/svn_support/templates/mod-dav-svn.conf.mako
752 782 #svn.proxy.config_template = ~/.rccontrol/enterprise-1/custom_svn_conf.mako
753 783
754 784 ; Used as a prefix to the `Location` block in the generated config file.
755 785 ; In most cases it should be set to `/`.
756 786 svn.proxy.location_root = /
757 787
758 788 ; Command to reload the mod dav svn configuration on change.
759 789 ; Example: `/etc/init.d/apache2 reload` or /home/USER/apache_reload.sh
760 790 ; Make sure user who runs RhodeCode process is allowed to reload Apache
761 791 #svn.proxy.reload_cmd = /etc/init.d/apache2 reload
762 792
763 793 ; If the timeout expires before the reload command finishes, the command will
764 794 ; be killed. Setting it to zero means no timeout. Defaults to 10 seconds.
765 795 #svn.proxy.reload_timeout = 10
766 796
767 797 ; ####################
768 798 ; SSH Support Settings
769 799 ; ####################
770 800
771 801 ; Defines if a custom authorized_keys file should be created and written on
772 802 ; any change user ssh keys. Setting this to false also disables possibility
773 803 ; of adding SSH keys by users from web interface. Super admins can still
774 804 ; manage SSH Keys.
775 805 ssh.generate_authorized_keyfile = true
776 806
777 807 ; Options for ssh, default is `no-pty,no-port-forwarding,no-X11-forwarding,no-agent-forwarding`
778 808 # ssh.authorized_keys_ssh_opts =
779 809
780 810 ; Path to the authorized_keys file where the generate entries are placed.
781 811 ; It is possible to have multiple key files specified in `sshd_config` e.g.
782 812 ; AuthorizedKeysFile %h/.ssh/authorized_keys %h/.ssh/authorized_keys_rhodecode
783 813 ssh.authorized_keys_file_path = /etc/rhodecode/conf/ssh/authorized_keys_rhodecode
784 814
785 815 ; Command to execute the SSH wrapper. The binary is available in the
786 816 ; RhodeCode installation directory.
787 817 ; legacy: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper
788 818 ; new rewrite: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2
789 819 #DEPRECATED: ssh.wrapper_cmd = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper
790 820 ssh.wrapper_cmd.v2 = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2
791 821
792 822 ; Allow shell when executing the ssh-wrapper command
793 823 ssh.wrapper_cmd_allow_shell = false
794 824
795 825 ; Enables logging, and detailed output send back to the client during SSH
796 826 ; operations. Useful for debugging, shouldn't be used in production.
797 827 ssh.enable_debug_logging = true
798 828
799 829 ; Paths to binary executable, by default they are the names, but we can
800 830 ; override them if we want to use a custom one
801 831 ssh.executable.hg = /usr/local/bin/rhodecode_bin/vcs_bin/hg
802 832 ssh.executable.git = /usr/local/bin/rhodecode_bin/vcs_bin/git
803 833 ssh.executable.svn = /usr/local/bin/rhodecode_bin/vcs_bin/svnserve
804 834
805 835 ; Enables SSH key generator web interface. Disabling this still allows users
806 836 ; to add their own keys.
807 837 ssh.enable_ui_key_generator = true
808 838
809 839 ; Statsd client config, this is used to send metrics to statsd
810 840 ; We recommend setting statsd_exported and scrape them using Prometheus
811 841 #statsd.enabled = false
812 842 #statsd.statsd_host = 0.0.0.0
813 843 #statsd.statsd_port = 8125
814 844 #statsd.statsd_prefix =
815 845 #statsd.statsd_ipv6 = false
816 846
817 847 ; configure logging automatically at server startup set to false
818 848 ; to use the below custom logging config.
819 849 ; RC_LOGGING_FORMATTER
820 850 ; RC_LOGGING_LEVEL
821 851 ; env variables can control the settings for logging in case of autoconfigure
822 852
823 853 #logging.autoconfigure = true
824 854
825 855 ; specify your own custom logging config file to configure logging
826 856 #logging.logging_conf_file = /path/to/custom_logging.ini
827 857
828 858 ; Dummy marker to add new entries after.
829 859 ; Add any custom entries below. Please don't remove this marker.
830 860 custom.conf = 1
831 861
832 862
833 863 ; #####################
834 864 ; LOGGING CONFIGURATION
835 865 ; #####################
836 866
837 867 [loggers]
838 868 keys = root, sqlalchemy, beaker, celery, rhodecode, ssh_wrapper
839 869
840 870 [handlers]
841 871 keys = console, console_sql
842 872
843 873 [formatters]
844 874 keys = generic, json, color_formatter, color_formatter_sql
845 875
846 876 ; #######
847 877 ; LOGGERS
848 878 ; #######
849 879 [logger_root]
850 880 level = NOTSET
851 881 handlers = console
852 882
853 883 [logger_sqlalchemy]
854 884 level = INFO
855 885 handlers = console_sql
856 886 qualname = sqlalchemy.engine
857 887 propagate = 0
858 888
859 889 [logger_beaker]
860 890 level = DEBUG
861 891 handlers =
862 892 qualname = beaker.container
863 893 propagate = 1
864 894
865 895 [logger_rhodecode]
866 896 level = DEBUG
867 897 handlers =
868 898 qualname = rhodecode
869 899 propagate = 1
870 900
871 901 [logger_ssh_wrapper]
872 902 level = DEBUG
873 903 handlers =
874 904 qualname = ssh_wrapper
875 905 propagate = 1
876 906
877 907 [logger_celery]
878 908 level = DEBUG
879 909 handlers =
880 910 qualname = celery
881 911
882 912
883 913 ; ########
884 914 ; HANDLERS
885 915 ; ########
886 916
887 917 [handler_console]
888 918 class = StreamHandler
889 919 args = (sys.stderr, )
890 920 level = DEBUG
891 921 ; To enable JSON formatted logs replace 'generic/color_formatter' with 'json'
892 922 ; This allows sending properly formatted logs to grafana loki or elasticsearch
893 923 formatter = color_formatter
894 924
895 925 [handler_console_sql]
896 926 ; "level = DEBUG" logs SQL queries and results.
897 927 ; "level = INFO" logs SQL queries.
898 928 ; "level = WARN" logs neither. (Recommended for production systems.)
899 929 class = StreamHandler
900 930 args = (sys.stderr, )
901 931 level = WARN
902 932 ; To enable JSON formatted logs replace 'generic/color_formatter_sql' with 'json'
903 933 ; This allows sending properly formatted logs to grafana loki or elasticsearch
904 934 formatter = color_formatter_sql
905 935
906 936 ; ##########
907 937 ; FORMATTERS
908 938 ; ##########
909 939
910 940 [formatter_generic]
911 941 class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter
912 942 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
913 943 datefmt = %Y-%m-%d %H:%M:%S
914 944
915 945 [formatter_color_formatter]
916 946 class = rhodecode.lib.logging_formatter.ColorFormatter
917 947 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
918 948 datefmt = %Y-%m-%d %H:%M:%S
919 949
920 950 [formatter_color_formatter_sql]
921 951 class = rhodecode.lib.logging_formatter.ColorFormatterSql
922 952 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
923 953 datefmt = %Y-%m-%d %H:%M:%S
924 954
925 955 [formatter_json]
926 956 format = %(timestamp)s %(levelname)s %(name)s %(message)s %(req_id)s
927 957 class = rhodecode.lib._vendor.jsonlogger.JsonFormatter
@@ -1,895 +1,925 b''
1 1
2 2 ; #########################################
3 3 ; RHODECODE COMMUNITY EDITION CONFIGURATION
4 4 ; #########################################
5 5
6 6 [DEFAULT]
7 7 ; Debug flag sets all loggers to debug, and enables request tracking
8 8 debug = false
9 9
10 10 ; ########################################################################
11 11 ; EMAIL CONFIGURATION
12 12 ; These settings will be used by the RhodeCode mailing system
13 13 ; ########################################################################
14 14
15 15 ; prefix all emails subjects with given prefix, helps filtering out emails
16 16 #email_prefix = [RhodeCode]
17 17
18 18 ; email FROM address all mails will be sent
19 19 #app_email_from = rhodecode-noreply@localhost
20 20
21 21 #smtp_server = mail.server.com
22 22 #smtp_username =
23 23 #smtp_password =
24 24 #smtp_port =
25 25 #smtp_use_tls = false
26 26 #smtp_use_ssl = true
27 27
28 28 [server:main]
29 29 ; COMMON HOST/IP CONFIG, This applies mostly to develop setup,
30 30 ; Host port for gunicorn are controlled by gunicorn_conf.py
31 31 host = 127.0.0.1
32 32 port = 10020
33 33
34 34
35 35 ; ###########################
36 36 ; GUNICORN APPLICATION SERVER
37 37 ; ###########################
38 38
39 39 ; run with gunicorn --config gunicorn_conf.py --paste rhodecode.ini
40 40
41 41 ; Module to use, this setting shouldn't be changed
42 42 use = egg:gunicorn#main
43 43
44 44 ; Prefix middleware for RhodeCode.
45 45 ; recommended when using proxy setup.
46 46 ; allows to set RhodeCode under a prefix in server.
47 47 ; eg https://server.com/custom_prefix. Enable `filter-with =` option below as well.
48 48 ; And set your prefix like: `prefix = /custom_prefix`
49 49 ; be sure to also set beaker.session.cookie_path = /custom_prefix if you need
50 50 ; to make your cookies only work on prefix url
51 51 [filter:proxy-prefix]
52 52 use = egg:PasteDeploy#prefix
53 53 prefix = /
54 54
55 55 [app:main]
56 56 ; The %(here)s variable will be replaced with the absolute path of parent directory
57 57 ; of this file
58 58 ; Each option in the app:main can be override by an environmental variable
59 59 ;
60 60 ;To override an option:
61 61 ;
62 62 ;RC_<KeyName>
63 63 ;Everything should be uppercase, . and - should be replaced by _.
64 64 ;For example, if you have these configuration settings:
65 65 ;rc_cache.repo_object.backend = foo
66 66 ;can be overridden by
67 67 ;export RC_CACHE_REPO_OBJECT_BACKEND=foo
68 68
69 69 use = egg:rhodecode-enterprise-ce
70 70
71 71 ; enable proxy prefix middleware, defined above
72 72 #filter-with = proxy-prefix
73 73
74 74 ; control if environmental variables to be expanded into the .ini settings
75 75 #rhodecode.env_expand = true
76 76
77 77 ; encryption key used to encrypt social plugin tokens,
78 78 ; remote_urls with credentials etc, if not set it defaults to
79 79 ; `beaker.session.secret`
80 80 #rhodecode.encrypted_values.secret =
81 81
82 82 ; decryption strict mode (enabled by default). It controls if decryption raises
83 83 ; `SignatureVerificationError` in case of wrong key, or damaged encryption data.
84 84 #rhodecode.encrypted_values.strict = false
85 85
86 86 ; Pick algorithm for encryption. Either fernet (more secure) or aes (default)
87 87 ; fernet is safer, and we strongly recommend switching to it.
88 88 ; Due to backward compatibility aes is used as default.
89 89 #rhodecode.encrypted_values.algorithm = fernet
90 90
91 91 ; Return gzipped responses from RhodeCode (static files/application)
92 92 gzip_responses = false
93 93
94 94 ; Auto-generate javascript routes file on startup
95 95 generate_js_files = false
96 96
97 97 ; System global default language.
98 98 ; All available languages: en (default), be, de, es, fr, it, ja, pl, pt, ru, zh
99 99 lang = en
100 100
101 101 ; Perform a full repository scan and import on each server start.
102 102 ; Settings this to true could lead to very long startup time.
103 103 startup.import_repos = false
104 104
105 105 ; URL at which the application is running. This is used for Bootstrapping
106 106 ; requests in context when no web request is available. Used in ishell, or
107 107 ; SSH calls. Set this for events to receive proper url for SSH calls.
108 108 app.base_url = http://rhodecode.local
109 109
110 110 ; Host at which the Service API is running.
111 111 app.service_api.host = http://rhodecode.local:10020
112 112
113 113 ; Secret for Service API authentication.
114 114 app.service_api.token =
115 115
116 116 ; Unique application ID. Should be a random unique string for security.
117 117 app_instance_uuid = rc-production
118 118
119 119 ; Cut off limit for large diffs (size in bytes). If overall diff size on
120 120 ; commit, or pull request exceeds this limit this diff will be displayed
121 121 ; partially. E.g 512000 == 512Kb
122 122 cut_off_limit_diff = 512000
123 123
124 124 ; Cut off limit for large files inside diffs (size in bytes). Each individual
125 125 ; file inside diff which exceeds this limit will be displayed partially.
126 126 ; E.g 128000 == 128Kb
127 127 cut_off_limit_file = 128000
128 128
129 129 ; Use cached version of vcs repositories everywhere. Recommended to be `true`
130 130 vcs_full_cache = true
131 131
132 132 ; Force https in RhodeCode, fixes https redirects, assumes it's always https.
133 133 ; Normally this is controlled by proper flags sent from http server such as Nginx or Apache
134 134 force_https = false
135 135
136 136 ; use Strict-Transport-Security headers
137 137 use_htsts = false
138 138
139 139 ; Set to true if your repos are exposed using the dumb protocol
140 140 git_update_server_info = false
141 141
142 142 ; RSS/ATOM feed options
143 143 rss_cut_off_limit = 256000
144 144 rss_items_per_page = 10
145 145 rss_include_diff = false
146 146
147 147 ; gist URL alias, used to create nicer urls for gist. This should be an
148 148 ; url that does rewrites to _admin/gists/{gistid}.
149 149 ; example: http://gist.rhodecode.org/{gistid}. Empty means use the internal
150 150 ; RhodeCode url, ie. http[s]://rhodecode.server/_admin/gists/{gistid}
151 151 gist_alias_url =
152 152
153 153 ; List of views (using glob pattern syntax) that AUTH TOKENS could be
154 154 ; used for access.
155 155 ; Adding ?auth_token=TOKEN_HASH to the url authenticates this request as if it
156 156 ; came from the the logged in user who own this authentication token.
157 157 ; Additionally @TOKEN syntax can be used to bound the view to specific
158 158 ; authentication token. Such view would be only accessible when used together
159 159 ; with this authentication token
160 160 ; list of all views can be found under `/_admin/permissions/auth_token_access`
161 161 ; The list should be "," separated and on a single line.
162 162 ; Most common views to enable:
163 163
164 164 # RepoCommitsView:repo_commit_download
165 165 # RepoCommitsView:repo_commit_patch
166 166 # RepoCommitsView:repo_commit_raw
167 167 # RepoCommitsView:repo_commit_raw@TOKEN
168 168 # RepoFilesView:repo_files_diff
169 169 # RepoFilesView:repo_archivefile
170 170 # RepoFilesView:repo_file_raw
171 171 # GistView:*
172 172 api_access_controllers_whitelist =
173 173
174 174 ; Default encoding used to convert from and to unicode
175 175 ; can be also a comma separated list of encoding in case of mixed encodings
176 176 default_encoding = UTF-8
177 177
178 178 ; instance-id prefix
179 179 ; a prefix key for this instance used for cache invalidation when running
180 180 ; multiple instances of RhodeCode, make sure it's globally unique for
181 181 ; all running RhodeCode instances. Leave empty if you don't use it
182 182 instance_id =
183 183
184 184 ; Fallback authentication plugin. Set this to a plugin ID to force the usage
185 185 ; of an authentication plugin also if it is disabled by it's settings.
186 186 ; This could be useful if you are unable to log in to the system due to broken
187 187 ; authentication settings. Then you can enable e.g. the internal RhodeCode auth
188 188 ; module to log in again and fix the settings.
189 189 ; Available builtin plugin IDs (hash is part of the ID):
190 190 ; egg:rhodecode-enterprise-ce#rhodecode
191 191 ; egg:rhodecode-enterprise-ce#pam
192 192 ; egg:rhodecode-enterprise-ce#ldap
193 193 ; egg:rhodecode-enterprise-ce#jasig_cas
194 194 ; egg:rhodecode-enterprise-ce#headers
195 195 ; egg:rhodecode-enterprise-ce#crowd
196 196
197 197 #rhodecode.auth_plugin_fallback = egg:rhodecode-enterprise-ce#rhodecode
198 198
199 199 ; Flag to control loading of legacy plugins in py:/path format
200 200 auth_plugin.import_legacy_plugins = true
201 201
202 202 ; alternative return HTTP header for failed authentication. Default HTTP
203 203 ; response is 401 HTTPUnauthorized. Currently HG clients have troubles with
204 204 ; handling that causing a series of failed authentication calls.
205 205 ; Set this variable to 403 to return HTTPForbidden, or any other HTTP code
206 206 ; This will be served instead of default 401 on bad authentication
207 207 auth_ret_code =
208 208
209 209 ; use special detection method when serving auth_ret_code, instead of serving
210 210 ; ret_code directly, use 401 initially (Which triggers credentials prompt)
211 211 ; and then serve auth_ret_code to clients
212 212 auth_ret_code_detection = false
213 213
214 214 ; locking return code. When repository is locked return this HTTP code. 2XX
215 215 ; codes don't break the transactions while 4XX codes do
216 216 lock_ret_code = 423
217 217
218 218 ; Filesystem location were repositories should be stored
219 219 repo_store.path = /var/opt/rhodecode_repo_store
220 220
221 221 ; allows to setup custom hooks in settings page
222 222 allow_custom_hooks_settings = true
223 223
224 224 ; Generated license token required for EE edition license.
225 225 ; New generated token value can be found in Admin > settings > license page.
226 226 license_token =
227 227
228 228 ; This flag hides sensitive information on the license page such as token, and license data
229 229 license.hide_license_info = false
230 230
231 231 ; Import EE license from this license path
232 232 #license.import_path = %(here)s/rhodecode_enterprise.license
233 233
234 234 ; import license 'if-missing' or 'force' (always override)
235 235 ; if-missing means apply license if it doesn't exist. 'force' option always overrides it
236 236 license.import_path_mode = if-missing
237 237
238 238 ; supervisor connection uri, for managing supervisor and logs.
239 239 supervisor.uri =
240 240
241 241 ; supervisord group name/id we only want this RC instance to handle
242 242 supervisor.group_id = prod
243 243
244 244 ; Display extended labs settings
245 245 labs_settings_active = true
246 246
247 247 ; Custom exception store path, defaults to TMPDIR
248 248 ; This is used to store exception from RhodeCode in shared directory
249 249 #exception_tracker.store_path =
250 250
251 251 ; Send email with exception details when it happens
252 252 #exception_tracker.send_email = false
253 253
254 254 ; Comma separated list of recipients for exception emails,
255 255 ; e.g admin@rhodecode.com,devops@rhodecode.com
256 256 ; Can be left empty, then emails will be sent to ALL super-admins
257 257 #exception_tracker.send_email_recipients =
258 258
259 259 ; optional prefix to Add to email Subject
260 260 #exception_tracker.email_prefix = [RHODECODE ERROR]
261 261
262 262 ; NOTE: this setting IS DEPRECATED:
263 263 ; file_store backend is always enabled
264 264 #file_store.enabled = true
265 265
266 266 ; NOTE: this setting IS DEPRECATED:
267 267 ; file_store.backend = X -> use `file_store.backend.type = filesystem_v2` instead
268 268 ; Storage backend, available options are: local
269 269 #file_store.backend = local
270 270
271 271 ; NOTE: this setting IS DEPRECATED:
272 272 ; file_store.storage_path = X -> use `file_store.filesystem_v2.storage_path = X` instead
273 273 ; path to store the uploaded binaries and artifacts
274 274 #file_store.storage_path = /var/opt/rhodecode_data/file_store
275 275
276 276 ; Artifacts file-store, is used to store comment attachments and artifacts uploads.
277 277 ; file_store backend type: filesystem_v1, filesystem_v2 or objectstore (s3-based) are available as options
278 278 ; filesystem_v1 is backwards compat with pre 5.1 storage changes
279 279 ; new installations should choose filesystem_v2 or objectstore (s3-based), pick filesystem when migrating from
280 280 ; previous installations to keep the artifacts without a need of migration
281 281 #file_store.backend.type = filesystem_v2
282 282
283 283 ; filesystem options...
284 284 #file_store.filesystem_v1.storage_path = /var/opt/rhodecode_data/artifacts_file_store
285 285
286 286 ; filesystem_v2 options...
287 287 #file_store.filesystem_v2.storage_path = /var/opt/rhodecode_data/artifacts_file_store
288 288 #file_store.filesystem_v2.shards = 8
289 289
290 290 ; objectstore options...
291 291 ; url for s3 compatible storage that allows to upload artifacts
292 292 ; e.g http://minio:9000
293 293 #file_store.backend.type = objectstore
294 294 #file_store.objectstore.url = http://s3-minio:9000
295 295
296 296 ; a top-level bucket to put all other shards in
297 297 ; objects will be stored in rhodecode-file-store/shard-N based on the bucket_shards number
298 298 #file_store.objectstore.bucket = rhodecode-file-store
299 299
300 300 ; number of sharded buckets to create to distribute archives across
301 301 ; default is 8 shards
302 302 #file_store.objectstore.bucket_shards = 8
303 303
304 304 ; key for s3 auth
305 305 #file_store.objectstore.key = s3admin
306 306
307 307 ; secret for s3 auth
308 308 #file_store.objectstore.secret = s3secret4
309 309
310 310 ;region for s3 storage
311 311 #file_store.objectstore.region = eu-central-1
312 312
313 313 ; Redis url to acquire/check generation of archives locks
314 314 archive_cache.locking.url = redis://redis:6379/1
315 315
316 316 ; Storage backend, only 'filesystem' and 'objectstore' are available now
317 317 archive_cache.backend.type = filesystem
318 318
319 319 ; url for s3 compatible storage that allows to upload artifacts
320 320 ; e.g http://minio:9000
321 321 archive_cache.objectstore.url = http://s3-minio:9000
322 322
323 323 ; key for s3 auth
324 324 archive_cache.objectstore.key = key
325 325
326 326 ; secret for s3 auth
327 327 archive_cache.objectstore.secret = secret
328 328
329 329 ;region for s3 storage
330 330 archive_cache.objectstore.region = eu-central-1
331 331
332 332 ; number of sharded buckets to create to distribute archives across
333 333 ; default is 8 shards
334 334 archive_cache.objectstore.bucket_shards = 8
335 335
336 336 ; a top-level bucket to put all other shards in
337 337 ; objects will be stored in rhodecode-archive-cache/shard-N based on the bucket_shards number
338 338 archive_cache.objectstore.bucket = rhodecode-archive-cache
339 339
340 340 ; if true, this cache will try to retry with retry_attempts=N times waiting retry_backoff time
341 341 archive_cache.objectstore.retry = false
342 342
343 343 ; number of seconds to wait for next try using retry
344 344 archive_cache.objectstore.retry_backoff = 1
345 345
346 346 ; how many tries do do a retry fetch from this backend
347 347 archive_cache.objectstore.retry_attempts = 10
348 348
349 349 ; Default is $cache_dir/archive_cache if not set
350 350 ; Generated repo archives will be cached at this location
351 351 ; and served from the cache during subsequent requests for the same archive of
352 352 ; the repository. This path is important to be shared across filesystems and with
353 353 ; RhodeCode and vcsserver
354 354 archive_cache.filesystem.store_dir = /var/opt/rhodecode_data/archive_cache
355 355
356 356 ; The limit in GB sets how much data we cache before recycling last used, defaults to 10 gb
357 357 archive_cache.filesystem.cache_size_gb = 40
358 358
359 359 ; Eviction policy used to clear out after cache_size_gb limit is reached
360 360 archive_cache.filesystem.eviction_policy = least-recently-stored
361 361
362 362 ; By default cache uses sharding technique, this specifies how many shards are there
363 363 ; default is 8 shards
364 364 archive_cache.filesystem.cache_shards = 8
365 365
366 366 ; if true, this cache will try to retry with retry_attempts=N times waiting retry_backoff time
367 367 archive_cache.filesystem.retry = false
368 368
369 369 ; number of seconds to wait for next try using retry
370 370 archive_cache.filesystem.retry_backoff = 1
371 371
372 372 ; how many tries do do a retry fetch from this backend
373 373 archive_cache.filesystem.retry_attempts = 10
374 374
375 375
376 376 ; #############
377 377 ; CELERY CONFIG
378 378 ; #############
379 379
380 380 ; manually run celery: /path/to/celery worker --task-events --beat --app rhodecode.lib.celerylib.loader --scheduler rhodecode.lib.celerylib.scheduler.RcScheduler --loglevel DEBUG --ini /path/to/rhodecode.ini
381 381
382 382 use_celery = true
383 383
384 384 ; path to store schedule database
385 385 #celerybeat-schedule.path =
386 386
387 387 ; connection url to the message broker (default redis)
388 388 celery.broker_url = redis://redis:6379/8
389 389
390 390 ; results backend to get results for (default redis)
391 391 celery.result_backend = redis://redis:6379/8
392 392
393 393 ; rabbitmq example
394 394 #celery.broker_url = amqp://rabbitmq:qweqwe@localhost:5672/rabbitmqhost
395 395
396 396 ; maximum tasks to execute before worker restart
397 397 celery.max_tasks_per_child = 20
398 398
399 399 ; tasks will never be sent to the queue, but executed locally instead.
400 400 celery.task_always_eager = false
401 401
402 402 ; #############
403 403 ; DOGPILE CACHE
404 404 ; #############
405 405
406 406 ; Default cache dir for caches. Putting this into a ramdisk can boost performance.
407 407 ; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space
408 408 cache_dir = /var/opt/rhodecode_data
409 409
410 410 ; *********************************************
411 411 ; `sql_cache_short` cache for heavy SQL queries
412 412 ; Only supported backend is `memory_lru`
413 413 ; *********************************************
414 414 rc_cache.sql_cache_short.backend = dogpile.cache.rc.memory_lru
415 415 rc_cache.sql_cache_short.expiration_time = 30
416 416
417 417
418 418 ; *****************************************************
419 419 ; `cache_repo_longterm` cache for repo object instances
420 420 ; Only supported backend is `memory_lru`
421 421 ; *****************************************************
422 422 rc_cache.cache_repo_longterm.backend = dogpile.cache.rc.memory_lru
423 423 ; by default we use 30 Days, cache is still invalidated on push
424 424 rc_cache.cache_repo_longterm.expiration_time = 2592000
425 425 ; max items in LRU cache, set to smaller number to save memory, and expire last used caches
426 426 rc_cache.cache_repo_longterm.max_size = 10000
427 427
428 428
429 429 ; *********************************************
430 430 ; `cache_general` cache for general purpose use
431 431 ; for simplicity use rc.file_namespace backend,
432 432 ; for performance and scale use rc.redis
433 433 ; *********************************************
434 434 rc_cache.cache_general.backend = dogpile.cache.rc.file_namespace
435 435 rc_cache.cache_general.expiration_time = 43200
436 436 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
437 437 #rc_cache.cache_general.arguments.filename = /tmp/cache_general_db
438 438
439 439 ; alternative `cache_general` redis backend with distributed lock
440 440 #rc_cache.cache_general.backend = dogpile.cache.rc.redis
441 441 #rc_cache.cache_general.expiration_time = 300
442 442
443 443 ; redis_expiration_time needs to be greater then expiration_time
444 444 #rc_cache.cache_general.arguments.redis_expiration_time = 7200
445 445
446 446 #rc_cache.cache_general.arguments.host = localhost
447 447 #rc_cache.cache_general.arguments.port = 6379
448 448 #rc_cache.cache_general.arguments.db = 0
449 449 #rc_cache.cache_general.arguments.socket_timeout = 30
450 450 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
451 451 #rc_cache.cache_general.arguments.distributed_lock = true
452 452
453 453 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
454 454 #rc_cache.cache_general.arguments.lock_auto_renewal = true
455 455
456 456 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
457 457 #rc_cache.cache_general.arguments.key_prefix = custom-prefix-
458 458
459 459
460 460 ; *************************************************
461 461 ; `cache_perms` cache for permission tree, auth TTL
462 462 ; for simplicity use rc.file_namespace backend,
463 463 ; for performance and scale use rc.redis
464 464 ; *************************************************
465 465 rc_cache.cache_perms.backend = dogpile.cache.rc.file_namespace
466 466 rc_cache.cache_perms.expiration_time = 3600
467 467 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
468 468 #rc_cache.cache_perms.arguments.filename = /tmp/cache_perms_db
469 469
470 470 ; alternative `cache_perms` redis backend with distributed lock
471 471 #rc_cache.cache_perms.backend = dogpile.cache.rc.redis
472 472 #rc_cache.cache_perms.expiration_time = 300
473 473
474 474 ; redis_expiration_time needs to be greater then expiration_time
475 475 #rc_cache.cache_perms.arguments.redis_expiration_time = 7200
476 476
477 477 #rc_cache.cache_perms.arguments.host = localhost
478 478 #rc_cache.cache_perms.arguments.port = 6379
479 479 #rc_cache.cache_perms.arguments.db = 0
480 480 #rc_cache.cache_perms.arguments.socket_timeout = 30
481 481 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
482 482 #rc_cache.cache_perms.arguments.distributed_lock = true
483 483
484 484 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
485 485 #rc_cache.cache_perms.arguments.lock_auto_renewal = true
486 486
487 487 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
488 488 #rc_cache.cache_perms.arguments.key_prefix = custom-prefix-
489 489
490 490
491 491 ; ***************************************************
492 492 ; `cache_repo` cache for file tree, Readme, RSS FEEDS
493 493 ; for simplicity use rc.file_namespace backend,
494 494 ; for performance and scale use rc.redis
495 495 ; ***************************************************
496 496 rc_cache.cache_repo.backend = dogpile.cache.rc.file_namespace
497 497 rc_cache.cache_repo.expiration_time = 2592000
498 498 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
499 499 #rc_cache.cache_repo.arguments.filename = /tmp/cache_repo_db
500 500
501 501 ; alternative `cache_repo` redis backend with distributed lock
502 502 #rc_cache.cache_repo.backend = dogpile.cache.rc.redis
503 503 #rc_cache.cache_repo.expiration_time = 2592000
504 504
505 505 ; redis_expiration_time needs to be greater then expiration_time
506 506 #rc_cache.cache_repo.arguments.redis_expiration_time = 2678400
507 507
508 508 #rc_cache.cache_repo.arguments.host = localhost
509 509 #rc_cache.cache_repo.arguments.port = 6379
510 510 #rc_cache.cache_repo.arguments.db = 1
511 511 #rc_cache.cache_repo.arguments.socket_timeout = 30
512 512 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
513 513 #rc_cache.cache_repo.arguments.distributed_lock = true
514 514
515 515 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
516 516 #rc_cache.cache_repo.arguments.lock_auto_renewal = true
517 517
518 518 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
519 519 #rc_cache.cache_repo.arguments.key_prefix = custom-prefix-
520 520
521 ; *********************************************
522 ; `cache_license` cache for storing license info
523 ; for simplicity use rc.file_namespace backend,
524 ; for performance and scale use rc.redis
525 ; *********************************************
526 rc_cache.cache_license.backend = dogpile.cache.rc.file_namespace
527 rc_cache.cache_license.expiration_time = 300
528 ; file cache store path. Defaults to `cache_dir =` value or tempdir if both values are not set
529 #rc_cache.cache_license.arguments.filename = /tmp/cache_general_db
530
531 ; alternative `cache_license` redis backend with distributed lock
532 #rc_cache.cache_license.backend = dogpile.cache.rc.redis
533 #rc_cache.cache_license.expiration_time = 300
534
535 ; redis_expiration_time needs to be greater then expiration_time
536 #rc_cache.cache_license.arguments.redis_expiration_time = 360
537
538 #rc_cache.cache_license.arguments.host = localhost
539 #rc_cache.cache_license.arguments.port = 6379
540 #rc_cache.cache_license.arguments.db = 0
541 #rc_cache.cache_license.arguments.socket_timeout = 30
542 ; more Redis options: https://dogpilecache.sqlalchemy.org/en/latest/api.html#redis-backends
543 #rc_cache.cache_license.arguments.distributed_lock = true
544
545 ; auto-renew lock to prevent stale locks, slower but safer. Use only if problems happen
546 #rc_cache.cache_license.arguments.lock_auto_renewal = true
547
548 ; prefix for redis keys used for this cache backend, the final key is constructed using {custom-prefix}{key}
549 #rc_cache.cache_license.arguments.key_prefix = custom-prefix-
550
521 551
522 552 ; ##############
523 553 ; BEAKER SESSION
524 554 ; ##############
525 555
526 556 ; beaker.session.type is type of storage options for the logged users sessions. Current allowed
527 557 ; types are file, ext:redis, ext:database, ext:memcached
528 558 ; Fastest ones are ext:redis and ext:database, DO NOT use memory type for session
529 559 #beaker.session.type = file
530 560 #beaker.session.data_dir = /var/opt/rhodecode_data/sessions
531 561
532 562 ; Redis based sessions
533 563 beaker.session.type = ext:redis
534 564 beaker.session.url = redis://redis:6379/2
535 565
536 566 ; DB based session, fast, and allows easy management over logged in users
537 567 #beaker.session.type = ext:database
538 568 #beaker.session.table_name = db_session
539 569 #beaker.session.sa.url = postgresql://postgres:secret@localhost/rhodecode
540 570 #beaker.session.sa.url = mysql://root:secret@127.0.0.1/rhodecode
541 571 #beaker.session.sa.pool_recycle = 3600
542 572 #beaker.session.sa.echo = false
543 573
544 574 beaker.session.key = rhodecode
545 575 beaker.session.secret = production-rc-uytcxaz
546 576 beaker.session.lock_dir = /data_ramdisk/lock
547 577
548 578 ; Secure encrypted cookie. Requires AES and AES python libraries
549 579 ; you must disable beaker.session.secret to use this
550 580 #beaker.session.encrypt_key = key_for_encryption
551 581 #beaker.session.validate_key = validation_key
552 582
553 583 ; Sets session as invalid (also logging out user) if it haven not been
554 584 ; accessed for given amount of time in seconds
555 585 beaker.session.timeout = 2592000
556 586 beaker.session.httponly = true
557 587
558 588 ; Path to use for the cookie. Set to prefix if you use prefix middleware
559 589 #beaker.session.cookie_path = /custom_prefix
560 590
561 591 ; Set https secure cookie
562 592 beaker.session.secure = false
563 593
564 594 ; default cookie expiration time in seconds, set to `true` to set expire
565 595 ; at browser close
566 596 #beaker.session.cookie_expires = 3600
567 597
568 598 ; #############################
569 599 ; SEARCH INDEXING CONFIGURATION
570 600 ; #############################
571 601
572 602 ; Full text search indexer is available in rhodecode-tools under
573 603 ; `rhodecode-tools index` command
574 604
575 605 ; WHOOSH Backend, doesn't require additional services to run
576 606 ; it works good with few dozen repos
577 607 search.module = rhodecode.lib.index.whoosh
578 608 search.location = %(here)s/data/index
579 609
580 610 ; ####################
581 611 ; CHANNELSTREAM CONFIG
582 612 ; ####################
583 613
584 614 ; channelstream enables persistent connections and live notification
585 615 ; in the system. It's also used by the chat system
586 616
587 617 channelstream.enabled = true
588 618
589 619 ; server address for channelstream server on the backend
590 620 channelstream.server = channelstream:9800
591 621
592 622 ; location of the channelstream server from outside world
593 623 ; use ws:// for http or wss:// for https. This address needs to be handled
594 624 ; by external HTTP server such as Nginx or Apache
595 625 ; see Nginx/Apache configuration examples in our docs
596 626 channelstream.ws_url = ws://rhodecode.yourserver.com/_channelstream
597 627 channelstream.secret = ENV_GENERATED
598 628 channelstream.history.location = /var/opt/rhodecode_data/channelstream_history
599 629
600 630 ; Internal application path that Javascript uses to connect into.
601 631 ; If you use proxy-prefix the prefix should be added before /_channelstream
602 632 channelstream.proxy_path = /_channelstream
603 633
604 634
605 635 ; ##############################
606 636 ; MAIN RHODECODE DATABASE CONFIG
607 637 ; ##############################
608 638
609 639 #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db?timeout=30
610 640 #sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/rhodecode
611 641 #sqlalchemy.db1.url = mysql://root:qweqwe@localhost/rhodecode?charset=utf8
612 642 ; pymysql is an alternative driver for MySQL, use in case of problems with default one
613 643 #sqlalchemy.db1.url = mysql+pymysql://root:qweqwe@localhost/rhodecode
614 644
615 645 sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/rhodecode
616 646
617 647 ; see sqlalchemy docs for other advanced settings
618 648 ; print the sql statements to output
619 649 sqlalchemy.db1.echo = false
620 650
621 651 ; recycle the connections after this amount of seconds
622 652 sqlalchemy.db1.pool_recycle = 3600
623 653
624 654 ; the number of connections to keep open inside the connection pool.
625 655 ; 0 indicates no limit
626 656 ; the general calculus with gevent is:
627 657 ; if your system allows 500 concurrent greenlets (max_connections) that all do database access,
628 658 ; then increase pool size + max overflow so that they add up to 500.
629 659 #sqlalchemy.db1.pool_size = 5
630 660
631 661 ; The number of connections to allow in connection pool "overflow", that is
632 662 ; connections that can be opened above and beyond the pool_size setting,
633 663 ; which defaults to five.
634 664 #sqlalchemy.db1.max_overflow = 10
635 665
636 666 ; Connection check ping, used to detect broken database connections
637 667 ; could be enabled to better handle cases if MySQL has gone away errors
638 668 #sqlalchemy.db1.ping_connection = true
639 669
640 670 ; ##########
641 671 ; VCS CONFIG
642 672 ; ##########
643 673 vcs.server.enable = true
644 674 vcs.server = vcsserver:10010
645 675
646 676 ; Web server connectivity protocol, responsible for web based VCS operations
647 677 ; Available protocols are:
648 678 ; `http` - use http-rpc backend (default)
649 679 vcs.server.protocol = http
650 680
651 681 ; Push/Pull operations protocol, available options are:
652 682 ; `http` - use http-rpc backend (default)
653 683 vcs.scm_app_implementation = http
654 684
655 685 ; Push/Pull operations hooks protocol, available options are:
656 686 ; `http` - use http-rpc backend (default)
657 687 ; `celery` - use celery based hooks
658 688 #DEPRECATED:vcs.hooks.protocol = http
659 689 vcs.hooks.protocol.v2 = celery
660 690
661 691 ; Host on which this instance is listening for hooks. vcsserver will call this host to pull/push hooks so it should be
662 692 ; accessible via network.
663 693 ; Use vcs.hooks.host = "*" to bind to current hostname (for Docker)
664 694 vcs.hooks.host = *
665 695
666 696 ; Start VCSServer with this instance as a subprocess, useful for development
667 697 vcs.start_server = false
668 698
669 699 ; List of enabled VCS backends, available options are:
670 700 ; `hg` - mercurial
671 701 ; `git` - git
672 702 ; `svn` - subversion
673 703 vcs.backends = hg, git, svn
674 704
675 705 ; Wait this number of seconds before killing connection to the vcsserver
676 706 vcs.connection_timeout = 3600
677 707
678 708 ; Cache flag to cache vcsserver remote calls locally
679 709 ; It uses cache_region `cache_repo`
680 710 vcs.methods.cache = true
681 711
682 712 ; Filesystem location where Git lfs objects should be stored
683 713 vcs.git.lfs.storage_location = /var/opt/rhodecode_repo_store/.cache/git_lfs_store
684 714
685 715 ; Filesystem location where Mercurial largefile objects should be stored
686 716 vcs.hg.largefiles.storage_location = /var/opt/rhodecode_repo_store/.cache/hg_largefiles_store
687 717
688 718 ; ####################################################
689 719 ; Subversion proxy support (mod_dav_svn)
690 720 ; Maps RhodeCode repo groups into SVN paths for Apache
691 721 ; ####################################################
692 722
693 723 ; Compatibility version when creating SVN repositories. Defaults to newest version when commented out.
694 724 ; Set a numeric version for your current SVN e.g 1.8, or 1.12
695 725 ; Legacy available options are: pre-1.4-compatible, pre-1.5-compatible, pre-1.6-compatible, pre-1.8-compatible, pre-1.9-compatible
696 726 #vcs.svn.compatible_version = 1.8
697 727
698 728 ; Redis connection settings for svn integrations logic
699 729 ; This connection string needs to be the same on ce and vcsserver
700 730 vcs.svn.redis_conn = redis://redis:6379/0
701 731
702 732 ; Enable SVN proxy of requests over HTTP
703 733 vcs.svn.proxy.enabled = true
704 734
705 735 ; host to connect to running SVN subsystem
706 736 vcs.svn.proxy.host = http://svn:8090
707 737
708 738 ; Enable or disable the config file generation.
709 739 svn.proxy.generate_config = true
710 740
711 741 ; Generate config file with `SVNListParentPath` set to `On`.
712 742 svn.proxy.list_parent_path = true
713 743
714 744 ; Set location and file name of generated config file.
715 745 svn.proxy.config_file_path = /etc/rhodecode/conf/svn/mod_dav_svn.conf
716 746
717 747 ; alternative mod_dav config template. This needs to be a valid mako template
718 748 ; Example template can be found in the source code:
719 749 ; rhodecode/apps/svn_support/templates/mod-dav-svn.conf.mako
720 750 #svn.proxy.config_template = ~/.rccontrol/enterprise-1/custom_svn_conf.mako
721 751
722 752 ; Used as a prefix to the `Location` block in the generated config file.
723 753 ; In most cases it should be set to `/`.
724 754 svn.proxy.location_root = /
725 755
726 756 ; Command to reload the mod dav svn configuration on change.
727 757 ; Example: `/etc/init.d/apache2 reload` or /home/USER/apache_reload.sh
728 758 ; Make sure user who runs RhodeCode process is allowed to reload Apache
729 759 #svn.proxy.reload_cmd = /etc/init.d/apache2 reload
730 760
731 761 ; If the timeout expires before the reload command finishes, the command will
732 762 ; be killed. Setting it to zero means no timeout. Defaults to 10 seconds.
733 763 #svn.proxy.reload_timeout = 10
734 764
735 765 ; ####################
736 766 ; SSH Support Settings
737 767 ; ####################
738 768
739 769 ; Defines if a custom authorized_keys file should be created and written on
740 770 ; any change user ssh keys. Setting this to false also disables possibility
741 771 ; of adding SSH keys by users from web interface. Super admins can still
742 772 ; manage SSH Keys.
743 773 ssh.generate_authorized_keyfile = true
744 774
745 775 ; Options for ssh, default is `no-pty,no-port-forwarding,no-X11-forwarding,no-agent-forwarding`
746 776 # ssh.authorized_keys_ssh_opts =
747 777
748 778 ; Path to the authorized_keys file where the generate entries are placed.
749 779 ; It is possible to have multiple key files specified in `sshd_config` e.g.
750 780 ; AuthorizedKeysFile %h/.ssh/authorized_keys %h/.ssh/authorized_keys_rhodecode
751 781 ssh.authorized_keys_file_path = /etc/rhodecode/conf/ssh/authorized_keys_rhodecode
752 782
753 783 ; Command to execute the SSH wrapper. The binary is available in the
754 784 ; RhodeCode installation directory.
755 785 ; legacy: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper
756 786 ; new rewrite: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2
757 787 #DEPRECATED: ssh.wrapper_cmd = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper
758 788 ssh.wrapper_cmd.v2 = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2
759 789
760 790 ; Allow shell when executing the ssh-wrapper command
761 791 ssh.wrapper_cmd_allow_shell = false
762 792
763 793 ; Enables logging, and detailed output send back to the client during SSH
764 794 ; operations. Useful for debugging, shouldn't be used in production.
765 795 ssh.enable_debug_logging = false
766 796
767 797 ; Paths to binary executable, by default they are the names, but we can
768 798 ; override them if we want to use a custom one
769 799 ssh.executable.hg = /usr/local/bin/rhodecode_bin/vcs_bin/hg
770 800 ssh.executable.git = /usr/local/bin/rhodecode_bin/vcs_bin/git
771 801 ssh.executable.svn = /usr/local/bin/rhodecode_bin/vcs_bin/svnserve
772 802
773 803 ; Enables SSH key generator web interface. Disabling this still allows users
774 804 ; to add their own keys.
775 805 ssh.enable_ui_key_generator = true
776 806
777 807 ; Statsd client config, this is used to send metrics to statsd
778 808 ; We recommend setting statsd_exported and scrape them using Prometheus
779 809 #statsd.enabled = false
780 810 #statsd.statsd_host = 0.0.0.0
781 811 #statsd.statsd_port = 8125
782 812 #statsd.statsd_prefix =
783 813 #statsd.statsd_ipv6 = false
784 814
785 815 ; configure logging automatically at server startup set to false
786 816 ; to use the below custom logging config.
787 817 ; RC_LOGGING_FORMATTER
788 818 ; RC_LOGGING_LEVEL
789 819 ; env variables can control the settings for logging in case of autoconfigure
790 820
791 821 #logging.autoconfigure = true
792 822
793 823 ; specify your own custom logging config file to configure logging
794 824 #logging.logging_conf_file = /path/to/custom_logging.ini
795 825
796 826 ; Dummy marker to add new entries after.
797 827 ; Add any custom entries below. Please don't remove this marker.
798 828 custom.conf = 1
799 829
800 830
801 831 ; #####################
802 832 ; LOGGING CONFIGURATION
803 833 ; #####################
804 834
805 835 [loggers]
806 836 keys = root, sqlalchemy, beaker, celery, rhodecode, ssh_wrapper
807 837
808 838 [handlers]
809 839 keys = console, console_sql
810 840
811 841 [formatters]
812 842 keys = generic, json, color_formatter, color_formatter_sql
813 843
814 844 ; #######
815 845 ; LOGGERS
816 846 ; #######
817 847 [logger_root]
818 848 level = NOTSET
819 849 handlers = console
820 850
821 851 [logger_sqlalchemy]
822 852 level = INFO
823 853 handlers = console_sql
824 854 qualname = sqlalchemy.engine
825 855 propagate = 0
826 856
827 857 [logger_beaker]
828 858 level = DEBUG
829 859 handlers =
830 860 qualname = beaker.container
831 861 propagate = 1
832 862
833 863 [logger_rhodecode]
834 864 level = DEBUG
835 865 handlers =
836 866 qualname = rhodecode
837 867 propagate = 1
838 868
839 869 [logger_ssh_wrapper]
840 870 level = DEBUG
841 871 handlers =
842 872 qualname = ssh_wrapper
843 873 propagate = 1
844 874
845 875 [logger_celery]
846 876 level = DEBUG
847 877 handlers =
848 878 qualname = celery
849 879
850 880
851 881 ; ########
852 882 ; HANDLERS
853 883 ; ########
854 884
855 885 [handler_console]
856 886 class = StreamHandler
857 887 args = (sys.stderr, )
858 888 level = INFO
859 889 ; To enable JSON formatted logs replace 'generic/color_formatter' with 'json'
860 890 ; This allows sending properly formatted logs to grafana loki or elasticsearch
861 891 formatter = generic
862 892
863 893 [handler_console_sql]
864 894 ; "level = DEBUG" logs SQL queries and results.
865 895 ; "level = INFO" logs SQL queries.
866 896 ; "level = WARN" logs neither. (Recommended for production systems.)
867 897 class = StreamHandler
868 898 args = (sys.stderr, )
869 899 level = WARN
870 900 ; To enable JSON formatted logs replace 'generic/color_formatter_sql' with 'json'
871 901 ; This allows sending properly formatted logs to grafana loki or elasticsearch
872 902 formatter = generic
873 903
874 904 ; ##########
875 905 ; FORMATTERS
876 906 ; ##########
877 907
878 908 [formatter_generic]
879 909 class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter
880 910 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
881 911 datefmt = %Y-%m-%d %H:%M:%S
882 912
883 913 [formatter_color_formatter]
884 914 class = rhodecode.lib.logging_formatter.ColorFormatter
885 915 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
886 916 datefmt = %Y-%m-%d %H:%M:%S
887 917
888 918 [formatter_color_formatter_sql]
889 919 class = rhodecode.lib.logging_formatter.ColorFormatterSql
890 920 format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s
891 921 datefmt = %Y-%m-%d %H:%M:%S
892 922
893 923 [formatter_json]
894 924 format = %(timestamp)s %(levelname)s %(name)s %(message)s %(req_id)s
895 925 class = rhodecode.lib._vendor.jsonlogger.JsonFormatter
General Comments 0
You need to be logged in to leave comments. Login now