##// END OF EJS Templates
configs: updated configs for VCSServer connectivty options
marcink -
r113:8a2ef1e2 default
parent child Browse files
Show More
@@ -477,16 +477,26 b' sqlalchemy.db1.convert_unicode = true'
477 ##################
477 ##################
478 vcs.server.enable = true
478 vcs.server.enable = true
479 vcs.server = localhost:9900
479 vcs.server = localhost:9900
480 # Available protocols: pyro4, http
481 vcs.server.protocol = pyro4
482
480
483 ## available backends are:
481 ## Web server connectivity protocol, responsible for web based VCS operatations
484 ## `rhodecode.lib.middleware.utils.scm_app_http` (Http based, recommended)
482 ## Available protocols are:
485 ## `vcsserver.scm_app` (EE only)
483 ## `pyro4` - using pyro4 server
486 ## `pyro4`
484 ## `http` - using http-rpc backend
485 #vcs.server.protocol = http
486
487 ## Push/Pull operations protocol, available options are:
488 ## `pyro4` - using pyro4 server
489 ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended
490 ## `vcsserver.scm_app` - internal app (EE only)
487 #vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
491 #vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
488
492
493 ## Push/Pull operations hooks protocol, available options are:
494 ## `pyro4` - using pyro4 server
495 ## `http` - using http-rpc backend
496 #vcs.hooks.protocol = http
497
489 vcs.server.log_level = debug
498 vcs.server.log_level = debug
499 ## Start VCSServer with this instance as a subprocess, usefull for development
490 vcs.start_server = true
500 vcs.start_server = true
491 vcs.backends = hg, git, svn
501 vcs.backends = hg, git, svn
492 vcs.connection_timeout = 3600
502 vcs.connection_timeout = 3600
@@ -451,16 +451,26 b' sqlalchemy.db1.convert_unicode = true'
451 ##################
451 ##################
452 vcs.server.enable = true
452 vcs.server.enable = true
453 vcs.server = localhost:9900
453 vcs.server = localhost:9900
454 # Available protocols: pyro4, http
455 vcs.server.protocol = pyro4
456
454
457 # available impl:
455 ## Web server connectivity protocol, responsible for web based VCS operatations
458 # vcsserver.scm_app (EE only, for testing),
456 ## Available protocols are:
459 # rhodecode.lib.middleware.utils.scm_app_http
457 ## `pyro4` - using pyro4 server
460 # pyro4
458 ## `http` - using http-rpc backend
459 #vcs.server.protocol = http
460
461 ## Push/Pull operations protocol, available options are:
462 ## `pyro4` - using pyro4 server
463 ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended
464 ## `vcsserver.scm_app` - internal app (EE only)
461 #vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
465 #vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
462
466
463 vcs.server.log_level = info
467 ## Push/Pull operations hooks protocol, available options are:
468 ## `pyro4` - using pyro4 server
469 ## `http` - using http-rpc backend
470 #vcs.hooks.protocol = http
471
472 vcs.server.log_level = debug
473 ## Start VCSServer with this instance as a subprocess, usefull for development
464 vcs.start_server = false
474 vcs.start_server = false
465 vcs.backends = hg, git, svn
475 vcs.backends = hg, git, svn
466 vcs.connection_timeout = 3600
476 vcs.connection_timeout = 3600
General Comments 0
You need to be logged in to leave comments. Login now