##// END OF EJS Templates
vcs: Set default settings to HTTP in ini files. Part of #4237
Martin Bornhold -
r957:e87951a3 default
parent child Browse files
Show More
@@ -534,18 +534,17 b' vcs.server = localhost:9900'
534 534 ## Web server connectivity protocol, responsible for web based VCS operatations
535 535 ## Available protocols are:
536 536 ## `pyro4` - using pyro4 server
537 ## `http` - using http-rpc backend
537 ## `http` - using http-rpc backend (default)
538 538 vcs.server.protocol = http
539 539
540 540 ## Push/Pull operations protocol, available options are:
541 541 ## `pyro4` - using pyro4 server
542 ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended
543 ## `vcsserver.scm_app` - internal app (EE only)
544 vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
542 ## `http` - using http-rpc backend (default)
543 vcs.scm_app_implementation = http
545 544
546 545 ## Push/Pull operations hooks protocol, available options are:
547 546 ## `pyro4` - using pyro4 server
548 ## `http` - using http-rpc backend
547 ## `http` - using http-rpc backend (default)
549 548 vcs.hooks.protocol = http
550 549
551 550 vcs.server.log_level = debug
@@ -502,20 +502,19 b' vcs.server = localhost:9900'
502 502
503 503 ## Web server connectivity protocol, responsible for web based VCS operatations
504 504 ## Available protocols are:
505 ## `pyro4` - using pyro4 server
506 ## `http` - using http-rpc backend
507 #vcs.server.protocol = http
505 ## `pyro4` - use pyro4 server
506 ## `http` - use http-rpc backend (default)
507 vcs.server.protocol = http
508 508
509 509 ## Push/Pull operations protocol, available options are:
510 ## `pyro4` - using pyro4 server
511 ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended
512 ## `vcsserver.scm_app` - internal app (EE only)
513 #vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http
510 ## `pyro4` - use pyro4 server
511 ## `http` - use http-rpc backend (default)
512 vcs.scm_app_implementation = http
514 513
515 514 ## Push/Pull operations hooks protocol, available options are:
516 ## `pyro4` - using pyro4 server
517 ## `http` - using http-rpc backend
518 #vcs.hooks.protocol = http
515 ## `pyro4` - use pyro4 server
516 ## `http` - use http-rpc backend (default)
517 vcs.hooks.protocol = http
519 518
520 519 vcs.server.log_level = info
521 520 ## Start VCSServer with this instance as a subprocess, usefull for development
General Comments 0
You need to be logged in to leave comments. Login now