# HG changeset patch # User Martin Bornhold # Date 2016-09-30 19:19:13 # Node ID e87951a3eabb934efe1725e2e2b603df38edaeb9 # Parent f726bb303d053b8489facf758043d4f6953a086f vcs: Set default settings to HTTP in ini files. Part of #4237 diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -534,18 +534,17 @@ vcs.server = localhost:9900 ## Web server connectivity protocol, responsible for web based VCS operatations ## Available protocols are: ## `pyro4` - using pyro4 server -## `http` - using http-rpc backend +## `http` - using http-rpc backend (default) vcs.server.protocol = http ## Push/Pull operations protocol, available options are: ## `pyro4` - using pyro4 server -## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended -## `vcsserver.scm_app` - internal app (EE only) -vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http +## `http` - using http-rpc backend (default) +vcs.scm_app_implementation = http ## Push/Pull operations hooks protocol, available options are: ## `pyro4` - using pyro4 server -## `http` - using http-rpc backend +## `http` - using http-rpc backend (default) vcs.hooks.protocol = http vcs.server.log_level = debug diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -502,20 +502,19 @@ vcs.server = localhost:9900 ## Web server connectivity protocol, responsible for web based VCS operatations ## Available protocols are: -## `pyro4` - using pyro4 server -## `http` - using http-rpc backend -#vcs.server.protocol = http +## `pyro4` - use pyro4 server +## `http` - use http-rpc backend (default) +vcs.server.protocol = http ## Push/Pull operations protocol, available options are: -## `pyro4` - using pyro4 server -## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended -## `vcsserver.scm_app` - internal app (EE only) -#vcs.scm_app_implementation = rhodecode.lib.middleware.utils.scm_app_http +## `pyro4` - use pyro4 server +## `http` - use http-rpc backend (default) +vcs.scm_app_implementation = http ## Push/Pull operations hooks protocol, available options are: -## `pyro4` - using pyro4 server -## `http` - using http-rpc backend -#vcs.hooks.protocol = http +## `pyro4` - use pyro4 server +## `http` - use http-rpc backend (default) +vcs.hooks.protocol = http vcs.server.log_level = info ## Start VCSServer with this instance as a subprocess, usefull for development