Show More
@@ -477,16 +477,26 b' sqlalchemy.db1.convert_unicode = true' | |||
|
477 | 477 | ################## |
|
478 | 478 | vcs.server.enable = true |
|
479 | 479 | vcs.server = localhost:9900 |
|
480 | # Available protocols: pyro4, http | |
|
481 | vcs.server.protocol = pyro4 | |
|
482 | 480 | |
|
483 | ## available backends are: | |
|
484 | ## `rhodecode.lib.middleware.utils.scm_app_http` (Http based, recommended) | |
|
485 | ## `vcsserver.scm_app` (EE only) | |
|
486 | ## `pyro4` | |
|
481 | ## Web server connectivity protocol, responsible for web based VCS operatations | |
|
482 | ## Available protocols are: | |
|
483 | ## `pyro4` - using pyro4 server | |
|
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 | 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 | 498 | vcs.server.log_level = debug |
|
499 | ## Start VCSServer with this instance as a subprocess, usefull for development | |
|
490 | 500 | vcs.start_server = true |
|
491 | 501 | vcs.backends = hg, git, svn |
|
492 | 502 | vcs.connection_timeout = 3600 |
@@ -451,16 +451,26 b' sqlalchemy.db1.convert_unicode = true' | |||
|
451 | 451 | ################## |
|
452 | 452 | vcs.server.enable = true |
|
453 | 453 | vcs.server = localhost:9900 |
|
454 | # Available protocols: pyro4, http | |
|
455 | vcs.server.protocol = pyro4 | |
|
456 | 454 | |
|
457 | # available impl: | |
|
458 | # vcsserver.scm_app (EE only, for testing), | |
|
459 | # rhodecode.lib.middleware.utils.scm_app_http | |
|
460 | # pyro4 | |
|
455 | ## Web server connectivity protocol, responsible for web based VCS operatations | |
|
456 | ## Available protocols are: | |
|
457 | ## `pyro4` - using pyro4 server | |
|
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 | 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 | 474 | vcs.start_server = false |
|
465 | 475 | vcs.backends = hg, git, svn |
|
466 | 476 | vcs.connection_timeout = 3600 |
General Comments 0
You need to be logged in to leave comments.
Login now