##// END OF EJS Templates
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case....
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case. Usually WIP in title means unfinished task that needs still some work. This pattern is present in Gitlab/Github and is already quite common.

File last commit:

r3848:fdb508f1 default
r4099:c12e69d0 default
Show More
vcsserver_http.ini
77 lines | 1.5 KiB | text/x-ini | IniLexer
Martin Bornhold
tests: Create new config files for vcsserver (http/pyro4)
r972 ################################################################################
# RhodeCode VCSServer with HTTP Backend - configuration #
# #
################################################################################
[app:main]
use = egg:rhodecode-vcsserver
pyramid.default_locale_name = en
pyramid.includes =
# default locale used by VCS systems
locale = en_US.UTF-8
# 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
beaker.cache.repo_object.expire = 300
beaker.cache.repo_object.enabled = true
[server:main]
host = 127.0.0.1
Martin Bornhold
pytest: Fix settings in test-ini files.
r976 port = 9900
Martin Bornhold
tests: Create new config files for vcsserver (http/pyro4)
r972
tests: use gunicorn for testing. This is close to production testing...
r2453 use = egg:gunicorn#main
Martin Bornhold
tests: Create new config files for vcsserver (http/pyro4)
r972 ################################
### LOGGING CONFIGURATION ####
################################
[loggers]
core: removed pyro4 from Enterprise code. Fixes #5198
r1409 keys = root, vcsserver, beaker
Martin Bornhold
tests: Create new config files for vcsserver (http/pyro4)
r972
[handlers]
keys = console
[formatters]
keys = generic
#############
## LOGGERS ##
#############
[logger_root]
level = NOTSET
handlers = console
[logger_vcsserver]
level = DEBUG
handlers =
qualname = vcsserver
propagate = 1
[logger_beaker]
level = DEBUG
handlers =
qualname = beaker
propagate = 1
##############
## HANDLERS ##
##############
[handler_console]
class = StreamHandler
args = (sys.stderr,)
caches: updated cache backend to new vcsserver caches implementation.
r3848 level = DEBUG
Martin Bornhold
tests: Create new config files for vcsserver (http/pyro4)
r972 formatter = generic
################
## FORMATTERS ##
################
[formatter_generic]
format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %Y-%m-%d %H:%M:%S