##// END OF EJS Templates
configs: updated docstrings, and improved explanation of some settings
marcink -
r631:dce4efba default
parent child Browse files
Show More
@@ -1,23 +1,36 b''
1 ################################################################################
1
2
2 3 ################################################################################
3 # RhodeCode Enterprise - configuration file #
4 # Built-in functions and variables #
4 ## RHODECODE ENTERPRISE CONFIGURATION ##
5 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 # #
7 6 ################################################################################
8 7
9 8 [DEFAULT]
10 9 debug = true
10
11 11 ################################################################################
12 ## EMAIL CONFIGURATION ##
12 13 ## Uncomment and replace with the email address which should receive ##
13 14 ## any error reports after an application crash ##
14 15 ## Additionally these settings will be used by the RhodeCode mailing system ##
15 16 ################################################################################
16 #email_to = admin@localhost
17 #error_email_from = paste_error@localhost
17
18 ## prefix all emails subjects with given prefix, helps filtering out emails
19 #email_prefix = [RhodeCode]
20
21 ## email FROM address all mails will be sent
18 22 #app_email_from = rhodecode-noreply@localhost
23
24 ## Uncomment and replace with the address which should receive any error report
25 ## note: using appenlight for error handling doesn't need this to be uncommented
26 #email_to = admin@localhost
27
28 ## in case of Application errors, sent an error email form
29 #error_email_from = rhodecode_error@localhost
30
31 ## additional error message to be send in case of server crash
19 32 #error_message =
20 #email_prefix = [RhodeCode]
33
21 34
22 35 #smtp_server = mail.server.com
23 36 #smtp_username =
@@ -37,6 +50,7 b' port = 5000'
37 50 ## WAITRESS WSGI SERVER ##
38 51 ## Recommended for Development ##
39 52 ##################################
53
40 54 use = egg:waitress#main
41 55 ## number of worker threads
42 56 threads = 5
@@ -51,6 +65,7 b' asyncore_use_poll = true'
51 65 ## GUNICORN WSGI SERVER ##
52 66 ##########################
53 67 ## run with gunicorn --log-config <inifile.ini> --paste <inifile.ini>
68
54 69 #use = egg:gunicorn#main
55 70 ## Sets the number of process workers. You must set `instance_id = *`
56 71 ## when this option is set to more than one worker, recommended
@@ -400,10 +415,12 b' search.location = %(here)s/data/index'
400 415 ## in the system. It's also used by the chat system
401 416
402 417 channelstream.enabled = true
403 # location of channelstream server on the backend
418 ## location of channelstream server on the backend
404 419 channelstream.server = 127.0.0.1:9800
405 # location of the channelstream server from outside world
406 channelstream.ws_url = ws://127.0.0.1:9800
420 ## location of the channelstream server from outside world
421 ## most likely this would be an http server special backend URL, that handles
422 ## websocket connections see nginx example for config
423 channelstream.ws_url = ws://rhodecode.yourserver.com/_channelstream
407 424 channelstream.secret = secret
408 425 channelstream.history.location = %(here)s/channelstream_history
409 426
@@ -545,9 +562,10 b' vcs.connection_timeout = 3600'
545 562 #vcs.svn.compatible_version = pre-1.8-compatible
546 563
547 564
548 ##############################################
549 ### Subversion proxy support (mod_dav_svn) ###
550 ##############################################
565 ############################################################
566 ### Subversion proxy support (mod_dav_svn) ###
567 ### Maps RhodeCode repo groups into SVN paths for Apache ###
568 ############################################################
551 569 ## Enable or disable the config file generation.
552 570 svn.proxy.generate_config = false
553 571 ## Generate config file with `SVNListParentPath` set to `On`.
@@ -1,23 +1,36 b''
1 ################################################################################
1
2
2 3 ################################################################################
3 # RhodeCode Enterprise - configuration file #
4 # Built-in functions and variables #
4 ## RHODECODE ENTERPRISE CONFIGURATION ##
5 5 # The %(here)s variable will be replaced with the parent directory of this file#
6 # #
7 6 ################################################################################
8 7
9 8 [DEFAULT]
10 9 debug = true
10
11 11 ################################################################################
12 ## EMAIL CONFIGURATION ##
12 13 ## Uncomment and replace with the email address which should receive ##
13 14 ## any error reports after an application crash ##
14 15 ## Additionally these settings will be used by the RhodeCode mailing system ##
15 16 ################################################################################
16 #email_to = admin@localhost
17 #error_email_from = paste_error@localhost
17
18 ## prefix all emails subjects with given prefix, helps filtering out emails
19 #email_prefix = [RhodeCode]
20
21 ## email FROM address all mails will be sent
18 22 #app_email_from = rhodecode-noreply@localhost
23
24 ## Uncomment and replace with the address which should receive any error report
25 ## note: using appenlight for error handling doesn't need this to be uncommented
26 #email_to = admin@localhost
27
28 ## in case of Application errors, sent an error email form
29 #error_email_from = rhodecode_error@localhost
30
31 ## additional error message to be send in case of server crash
19 32 #error_message =
20 #email_prefix = [RhodeCode]
33
21 34
22 35 #smtp_server = mail.server.com
23 36 #smtp_username =
@@ -37,6 +50,7 b' port = 5000'
37 50 ## WAITRESS WSGI SERVER ##
38 51 ## Recommended for Development ##
39 52 ##################################
53
40 54 #use = egg:waitress#main
41 55 ## number of worker threads
42 56 #threads = 5
@@ -51,6 +65,7 b' port = 5000'
51 65 ## GUNICORN WSGI SERVER ##
52 66 ##########################
53 67 ## run with gunicorn --log-config <inifile.ini> --paste <inifile.ini>
68
54 69 use = egg:gunicorn#main
55 70 ## Sets the number of process workers. You must set `instance_id = *`
56 71 ## when this option is set to more than one worker, recommended
@@ -374,10 +389,12 b' search.location = %(here)s/data/index'
374 389 ## in the system. It's also used by the chat system
375 390
376 391 channelstream.enabled = true
377 # location of channelstream server on the backend
392 ## location of channelstream server on the backend
378 393 channelstream.server = 127.0.0.1:9800
379 # location of the channelstream server from outside world
380 channelstream.ws_url = ws://127.0.0.1:9800
394 ## location of the channelstream server from outside world
395 ## most likely this would be an http server special backend URL, that handles
396 ## websocket connections see nginx example for config
397 channelstream.ws_url = ws://rhodecode.yourserver.com/_channelstream
381 398 channelstream.secret = secret
382 399 channelstream.history.location = %(here)s/channelstream_history
383 400
@@ -514,9 +531,10 b' vcs.connection_timeout = 3600'
514 531 #vcs.svn.compatible_version = pre-1.8-compatible
515 532
516 533
517 ##############################################
518 ### Subversion proxy support (mod_dav_svn) ###
519 ##############################################
534 ############################################################
535 ### Subversion proxy support (mod_dav_svn) ###
536 ### Maps RhodeCode repo groups into SVN paths for Apache ###
537 ############################################################
520 538 ## Enable or disable the config file generation.
521 539 svn.proxy.generate_config = false
522 540 ## Generate config file with `SVNListParentPath` set to `On`.
General Comments 0
You need to be logged in to leave comments. Login now