diff --git a/configs/development_http.ini b/configs/development_http.ini --- a/configs/development_http.ini +++ b/configs/development_http.ini @@ -3,33 +3,38 @@ # # ################################################################################ + +[server:main] +## COMMON ## +host = 0.0.0.0 +port = 9900 + + +use = egg:waitress#main + + [app:main] use = egg:rhodecode-vcsserver pyramid.default_locale_name = en pyramid.includes = -# default locale used by VCS systems +## default locale used by VCS systems locale = en_US.UTF-8 -# cache regions, please don't change +## cache regions, please don't change beaker.cache.regions = repo_object beaker.cache.repo_object.type = memorylru beaker.cache.repo_object.max_items = 100 -# cache auto-expires after N seconds +## cache auto-expires after N seconds beaker.cache.repo_object.expire = 300 beaker.cache.repo_object.enabled = true -# path to binaries for vcsserver, it should be set by the installer -# at installation time, e.g /home/user/vcsserver-1/profile/bin +## path to binaries for vcsserver, it should be set by the installer +## at installation time, e.g /home/user/vcsserver-1/profile/bin core.binary_dir = "" -[server:main] -## COMMON ## -host = 0.0.0.0 -port = 9900 -use = egg:waitress#main ################################ diff --git a/configs/production_http.ini b/configs/production_http.ini --- a/configs/production_http.ini +++ b/configs/production_http.ini @@ -39,19 +39,19 @@ use = egg:rhodecode-vcsserver pyramid.default_locale_name = en pyramid.includes = -# default locale used by VCS systems +## default locale used by VCS systems locale = en_US.UTF-8 -# cache regions, please don't change +## cache regions, please don't change beaker.cache.regions = repo_object beaker.cache.repo_object.type = memorylru beaker.cache.repo_object.max_items = 100 -# cache auto-expires after N seconds +## cache auto-expires after N seconds beaker.cache.repo_object.expire = 300 beaker.cache.repo_object.enabled = true -# path to binaries for vcsserver, it should be set by the installer -# at installation time, e.g /home/user/vcsserver-1/profile/bin +## path to binaries for vcsserver, it should be set by the installer +## at installation time, e.g /home/user/vcsserver-1/profile/bin core.binary_dir = ""