rhodecode.ini
657 lines
| 21.8 KiB
| text/x-ini
|
IniLexer
Martin Bornhold
|
r971 | ||
r4823 | ; ######################################### | ||
; RHODECODE COMMUNITY EDITION CONFIGURATION | |||
; ######################################### | |||
Martin Bornhold
|
r971 | ||
[DEFAULT] | |||
r4823 | ; Debug flag sets all loggers to debug, and enables request tracking | ||
Martin Bornhold
|
r971 | debug = true | |
r4823 | ; ######################################################################## | ||
; EMAIL CONFIGURATION | |||
; These settings will be used by the RhodeCode mailing system | |||
; ######################################################################## | |||
Martin Bornhold
|
r971 | ||
r4823 | ; prefix all emails subjects with given prefix, helps filtering out emails | ||
Martin Bornhold
|
r971 | #email_prefix = [RhodeCode] | |
r4823 | ; email FROM address all mails will be sent | ||
Martin Bornhold
|
r971 | #app_email_from = rhodecode-noreply@localhost | |
#smtp_server = mail.server.com | |||
#smtp_username = | |||
#smtp_password = | |||
#smtp_port = | |||
#smtp_use_tls = false | |||
#smtp_use_ssl = true | |||
[server:main] | |||
r4823 | ; COMMON HOST/IP CONFIG | ||
Martin Bornhold
|
r971 | host = 0.0.0.0 | |
port = 5000 | |||
r4823 | |||
; ########################### | |||
; GUNICORN APPLICATION SERVER | |||
; ########################### | |||
Martin Bornhold
|
r971 | ||
r4823 | ; run with gunicorn --log-config rhodecode.ini --paste rhodecode.ini | ||
; Module to use, this setting shouldn't be changed | |||
r2453 | use = egg:gunicorn#main | ||
r4823 | |||
Martin Bornhold
|
r971 | ## Sets the number of process workers. You must set `instance_id = *` | |
## when this option is set to more than one worker, recommended | |||
## value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers | |||
## The `instance_id = *` must be set in the [app:main] section below | |||
#workers = 2 | |||
## number of threads for each of the worker, must be set to 1 for gevent | |||
## generally recommened to be at 1 | |||
#threads = 1 | |||
## process name | |||
#proc_name = rhodecode | |||
## type of worker class, one of sync, gevent | |||
## recommended for bigger setup is using of of other than sync one | |||
#worker_class = sync | |||
## The maximum number of simultaneous clients. Valid only for Gevent | |||
#worker_connections = 10 | |||
## max number of requests that worker will handle before being gracefully | |||
## restarted, could prevent memory leaks | |||
#max_requests = 1000 | |||
#max_requests_jitter = 30 | |||
## amount of time a worker can spend with handling a request before it | |||
## gets killed and restarted. Set to 6hrs | |||
#timeout = 21600 | |||
r1121 | ## prefix middleware for RhodeCode. | ||
Martin Bornhold
|
r971 | ## recommended when using proxy setup. | |
## allows to set RhodeCode under a prefix in server. | |||
r1951 | ## eg https://server.com/custom_prefix. Enable `filter-with =` option below as well. | ||
## And set your prefix like: `prefix = /custom_prefix` | |||
## be sure to also set beaker.session.cookie_path = /custom_prefix if you need | |||
## to make your cookies only work on prefix url | |||
Martin Bornhold
|
r971 | [filter:proxy-prefix] | |
use = egg:PasteDeploy#prefix | |||
prefix = / | |||
[app:main] | |||
is_test = True | |||
use = egg:rhodecode-enterprise-ce | |||
r4823 | ; enable proxy prefix middleware, defined above | ||
Martin Bornhold
|
r971 | #filter-with = proxy-prefix | |
## RHODECODE PLUGINS ## | |||
rhodecode.includes = rhodecode.api | |||
# api prefix url | |||
rhodecode.api.url = /_admin/api | |||
## END RHODECODE PLUGINS ## | |||
## encryption key used to encrypt social plugin tokens, | |||
## remote_urls with credentials etc, if not set it defaults to | |||
## `beaker.session.secret` | |||
#rhodecode.encrypted_values.secret = | |||
r4823 | ; decryption strict mode (enabled by default). It controls if decryption raises | ||
; `SignatureVerificationError` in case of wrong key, or damaged encryption data. | |||
Martin Bornhold
|
r971 | #rhodecode.encrypted_values.strict = false | |
r4823 | ; Pick algorithm for encryption. Either fernet (more secure) or aes (default) | ||
; fernet is safer, and we strongly recommend switching to it. | |||
; Due to backward compatibility aes is used as default. | |||
#rhodecode.encrypted_values.algorithm = fernet | |||
; Return gzipped responses from RhodeCode (static files/application) | |||
Martin Bornhold
|
r971 | gzip_responses = false | |
r4823 | ; Auto-generate javascript routes file on startup | ||
Martin Bornhold
|
r971 | generate_js_files = false | |
r4823 | ; System global default language. | ||
; All available languages: en (default), be, de, es, fr, it, ja, pl, pt, ru, zh | |||
Martin Bornhold
|
r971 | lang = en | |
## perform a full repository scan on each server start, this should be | |||
## set to false after first startup, to allow faster server restarts. | |||
startup.import_repos = true | |||
r4823 | ; Uncomment and set this path to use archive download cache. | ||
; Once enabled, generated archives will be cached at this location | |||
; and served from the cache during subsequent requests for the same archive of | |||
; the repository. | |||
Martin Bornhold
|
r971 | #archive_cache_dir = /tmp/tarballcache | |
r4823 | ; URL at which the application is running. This is used for Bootstrapping | ||
; requests in context when no web request is available. Used in ishell, or | |||
; SSH calls. Set this for events to receive proper url for SSH calls. | |||
r2188 | app.base_url = http://rhodecode.local | ||
r4823 | ; Unique application ID. Should be a random unique string for security. | ||
Martin Bornhold
|
r971 | app_instance_uuid = rc-production | |
## cut off limit for large diffs (size in bytes) | |||
cut_off_limit_diff = 1024000 | |||
cut_off_limit_file = 256000 | |||
r4823 | ; Use cached version of vcs repositories everywhere. Recommended to be `true` | ||
Martin Bornhold
|
r971 | vcs_full_cache = false | |
r4823 | ; Force https in RhodeCode, fixes https redirects, assumes it's always https. | ||
; Normally this is controlled by proper flags sent from http server such as Nginx or Apache | |||
Martin Bornhold
|
r971 | force_https = false | |
r4823 | ; use Strict-Transport-Security headers | ||
Martin Bornhold
|
r971 | use_htsts = false | |
r4823 | ; Set to true if your repos are exposed using the dumb protocol | ||
Martin Bornhold
|
r971 | git_update_server_info = false | |
r4823 | ; RSS/ATOM feed options | ||
Martin Bornhold
|
r971 | rss_cut_off_limit = 256000 | |
rss_items_per_page = 10 | |||
rss_include_diff = false | |||
r4823 | ; gist URL alias, used to create nicer urls for gist. This should be an | ||
; url that does rewrites to _admin/gists/{gistid}. | |||
; example: http://gist.rhodecode.org/{gistid}. Empty means use the internal | |||
; RhodeCode url, ie. http[s]://rhodecode.server/_admin/gists/{gistid} | |||
Martin Bornhold
|
r971 | gist_alias_url = | |
r1951 | ## List of views (using glob pattern syntax) that AUTH TOKENS could be | ||
Martin Bornhold
|
r971 | ## used for access. | |
r1951 | ## Adding ?auth_token=TOKEN_HASH to the url authenticates this request as if it | ||
Martin Bornhold
|
r971 | ## came from the the logged in user who own this authentication token. | |
r2043 | ## Additionally @TOKEN syntaxt can be used to bound the view to specific | ||
## authentication token. Such view would be only accessible when used together | |||
## with this authentication token | |||
Martin Bornhold
|
r971 | ## | |
r2043 | ## list of all views can be found under `/_admin/permissions/auth_token_access` | ||
Martin Bornhold
|
r971 | ## The list should be "," separated and on a single line. | |
## | |||
r1951 | ## Most common views to enable: | ||
# RepoCommitsView:repo_commit_download | |||
# RepoCommitsView:repo_commit_patch | |||
# RepoCommitsView:repo_commit_raw | |||
r2043 | # RepoCommitsView:repo_commit_raw@TOKEN | ||
r1951 | # RepoFilesView:repo_files_diff | ||
# RepoFilesView:repo_archivefile | |||
# RepoFilesView:repo_file_raw | |||
# GistView:* | |||
Martin Bornhold
|
r971 | api_access_controllers_whitelist = | |
r4823 | ; Default encoding used to convert from and to unicode | ||
; can be also a comma separated list of encoding in case of mixed encodings | |||
Martin Bornhold
|
r971 | default_encoding = UTF-8 | |
r4823 | ; instance-id prefix | ||
; a prefix key for this instance used for cache invalidation when running | |||
; multiple instances of RhodeCode, make sure it's globally unique for | |||
; all running RhodeCode instances. Leave empty if you don't use it | |||
Martin Bornhold
|
r971 | instance_id = | |
r4823 | ; Fallback authentication plugin. Set this to a plugin ID to force the usage | ||
; of an authentication plugin also if it is disabled by it's settings. | |||
; This could be useful if you are unable to log in to the system due to broken | |||
; authentication settings. Then you can enable e.g. the internal RhodeCode auth | |||
; module to log in again and fix the settings. | |||
; Available builtin plugin IDs (hash is part of the ID): | |||
; egg:rhodecode-enterprise-ce#rhodecode | |||
; egg:rhodecode-enterprise-ce#pam | |||
; egg:rhodecode-enterprise-ce#ldap | |||
; egg:rhodecode-enterprise-ce#jasig_cas | |||
; egg:rhodecode-enterprise-ce#headers | |||
; egg:rhodecode-enterprise-ce#crowd | |||
Martin Bornhold
|
r971 | #rhodecode.auth_plugin_fallback = egg:rhodecode-enterprise-ce#rhodecode | |
r4823 | ; Flag to control loading of legacy plugins in py:/path format | ||
auth_plugin.import_legacy_plugins = true | |||
; alternative return HTTP header for failed authentication. Default HTTP | |||
; response is 401 HTTPUnauthorized. Currently HG clients have troubles with | |||
; handling that causing a series of failed authentication calls. | |||
; Set this variable to 403 to return HTTPForbidden, or any other HTTP code | |||
; This will be served instead of default 401 on bad authentication | |||
Martin Bornhold
|
r971 | auth_ret_code = | |
## use special detection method when serving auth_ret_code, instead of serving | |||
## ret_code directly, use 401 initially (Which triggers credentials prompt) | |||
## and then serve auth_ret_code to clients | |||
auth_ret_code_detection = false | |||
## locking return code. When repository is locked return this HTTP code. 2XX | |||
## codes don't break the transactions while 4XX codes do | |||
lock_ret_code = 423 | |||
## allows to change the repository location in settings page | |||
allow_repo_location_change = true | |||
## allows to setup custom hooks in settings page | |||
allow_custom_hooks_settings = true | |||
## generated license token, goto license page in RhodeCode settings to obtain | |||
## new token | |||
license_token = abra-cada-bra1-rce3 | |||
## supervisor connection uri, for managing supervisor and logs. | |||
supervisor.uri = | |||
## supervisord group name/id we only want this RC instance to handle | |||
supervisor.group_id = dev | |||
## Display extended labs settings | |||
labs_settings_active = true | |||
r4823 | ; ############# | ||
; CELERY CONFIG | |||
; ############# | |||
; manually run celery: /path/to/celery worker -E --beat --app rhodecode.lib.celerylib.loader --scheduler rhodecode.lib.celerylib.scheduler.RcScheduler --loglevel DEBUG --ini /path/to/rhodecode.ini | |||
Martin Bornhold
|
r971 | use_celery = false | |
r4823 | ; path to store schedule database | ||
#celerybeat-schedule.path = | |||
Martin Bornhold
|
r971 | ||
r4823 | ; connection url to the message broker (default redis) | ||
celery.broker_url = redis://localhost:6379/8 | |||
Martin Bornhold
|
r971 | ||
r4823 | ; rabbitmq example | ||
#celery.broker_url = amqp://rabbitmq:qweqwe@localhost:5672/rabbitmqhost | |||
Martin Bornhold
|
r971 | ||
r4823 | ; maximum tasks to execute before worker restart | ||
celery.max_tasks_per_child = 100 | |||
Martin Bornhold
|
r971 | ||
r4823 | ; tasks will never be sent to the queue, but executed locally instead. | ||
celery.task_always_eager = false | |||
Martin Bornhold
|
r971 | ||
r4823 | ; ############# | ||
; DOGPILE CACHE | |||
; ############# | |||
; Default cache dir for caches. Putting this into a ramdisk can boost performance. | |||
; eg. /tmpfs/data_ramdisk, however this directory might require large amount of space | |||
Martin Bornhold
|
r971 | cache_dir = %(here)s/data | |
## locking and default file storage for Beaker. Putting this into a ramdisk | |||
## can boost performance, eg. %(here)s/data_ramdisk/cache/beaker_data | |||
beaker.cache.data_dir = %(here)s/rc/data/cache/beaker_data | |||
beaker.cache.lock_dir = %(here)s/rc/data/cache/beaker_lock | |||
r2883 | beaker.cache.regions = long_term | ||
Martin Bornhold
|
r971 | ||
beaker.cache.long_term.type = memory | |||
beaker.cache.long_term.expire = 36000 | |||
beaker.cache.long_term.key_length = 256 | |||
r2845 | ##################################### | ||
### DOGPILE CACHE #### | |||
##################################### | |||
## permission tree cache settings | |||
rc_cache.cache_perms.backend = dogpile.cache.rc.file_namespace | |||
rc_cache.cache_perms.expiration_time = 0 | |||
rc_cache.cache_perms.arguments.filename = /tmp/rc_cache_1 | |||
r2883 | |||
## cache settings for SQL queries | |||
rc_cache.sql_cache_short.backend = dogpile.cache.rc.memory_lru | |||
rc_cache.sql_cache_short.expiration_time = 0 | |||
r4823 | ; ############## | ||
; BEAKER SESSION | |||
; ############## | |||
Martin Bornhold
|
r971 | ||
r4823 | ; beaker.session.type is type of storage options for the logged users sessions. Current allowed | ||
; types are file, ext:redis, ext:database, ext:memcached, and memory (default if not specified). | |||
; Fastest ones are Redis and ext:database | |||
Martin Bornhold
|
r971 | beaker.session.type = file | |
beaker.session.data_dir = %(here)s/rc/data/sessions/data | |||
r4823 | ; Redis based sessions | ||
#beaker.session.type = ext:redis | |||
#beaker.session.url = redis://127.0.0.1:6379/2 | |||
; DB based session, fast, and allows easy management over logged in users | |||
Martin Bornhold
|
r971 | #beaker.session.type = ext:database | |
#beaker.session.table_name = db_session | |||
#beaker.session.sa.url = postgresql://postgres:secret@localhost/rhodecode | |||
#beaker.session.sa.url = mysql://root:secret@127.0.0.1/rhodecode | |||
#beaker.session.sa.pool_recycle = 3600 | |||
#beaker.session.sa.echo = false | |||
beaker.session.key = rhodecode | |||
beaker.session.secret = test-rc-uytcxaz | |||
beaker.session.lock_dir = %(here)s/rc/data/sessions/lock | |||
r4823 | ; Secure encrypted cookie. Requires AES and AES python libraries | ||
; you must disable beaker.session.secret to use this | |||
r1951 | #beaker.session.encrypt_key = key_for_encryption | ||
#beaker.session.validate_key = validation_key | |||
Martin Bornhold
|
r971 | ||
r4823 | ; Sets session as invalid (also logging out user) if it haven not been | ||
; accessed for given amount of time in seconds | |||
Martin Bornhold
|
r971 | beaker.session.timeout = 2592000 | |
beaker.session.httponly = true | |||
r4823 | |||
; Path to use for the cookie. Set to prefix if you use prefix middleware | |||
r1951 | #beaker.session.cookie_path = /custom_prefix | ||
Martin Bornhold
|
r971 | ||
r4823 | ; Set https secure cookie | ||
Martin Bornhold
|
r971 | beaker.session.secure = false | |
## auto save the session to not to use .save() | |||
beaker.session.auto = false | |||
## default cookie expiration time in seconds, set to `true` to set expire | |||
## at browser close | |||
#beaker.session.cookie_expires = 3600 | |||
r4823 | ; ############################# | ||
; SEARCH INDEXING CONFIGURATION | |||
; ############################# | |||
Martin Bornhold
|
r971 | ||
r1951 | ## WHOOSH Backend, doesn't require additional services to run | ||
## it works good with few dozen repos | |||
Martin Bornhold
|
r971 | search.module = rhodecode.lib.index.whoosh | |
search.location = %(here)s/data/index | |||
r4823 | ; #################### | ||
; CHANNELSTREAM CONFIG | |||
; #################### | |||
; channelstream enables persistent connections and live notification | |||
; in the system. It's also used by the chat system | |||
Martin Bornhold
|
r971 | ||
channelstream.enabled = false | |||
r1951 | |||
r4823 | ; server address for channelstream server on the backend | ||
Martin Bornhold
|
r971 | channelstream.server = 127.0.0.1:9800 | |
r4823 | |||
; location of the channelstream server from outside world | |||
; use ws:// for http or wss:// for https. This address needs to be handled | |||
; by external HTTP server such as Nginx or Apache | |||
; see Nginx/Apache configuration examples in our docs | |||
Martin Bornhold
|
r971 | channelstream.ws_url = ws://rhodecode.yourserver.com/_channelstream | |
channelstream.secret = secret | |||
channelstream.history.location = %(here)s/channelstream_history | |||
r4823 | ; Internal application path that Javascript uses to connect into. | ||
; If you use proxy-prefix the prefix should be added before /_channelstream | |||
r1951 | channelstream.proxy_path = /_channelstream | ||
Martin Bornhold
|
r971 | ||
r4823 | ; ############################## | ||
; MAIN RHODECODE DATABASE CONFIG | |||
; ############################## | |||
Martin Bornhold
|
r971 | ||
r4823 | #sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode.db?timeout=30 | ||
#sqlalchemy.db1.url = postgresql://postgres:qweqwe@localhost/rhodecode | |||
#sqlalchemy.db1.url = mysql://root:qweqwe@localhost/rhodecode?charset=utf8 | |||
; pymysql is an alternative driver for MySQL, use in case of problems with default one | |||
#sqlalchemy.db1.url = mysql+pymysql://root:qweqwe@localhost/rhodecode | |||
Martin Bornhold
|
r971 | ||
r1951 | sqlalchemy.db1.url = sqlite:///%(here)s/rhodecode_test.db?timeout=30 | ||
Martin Bornhold
|
r971 | ||
r4823 | ; see sqlalchemy docs for other advanced settings | ||
; print the sql statements to output | |||
Martin Bornhold
|
r971 | sqlalchemy.db1.echo = false | |
r4823 | ; recycle the connections after this amount of seconds | ||
sqlalchemy.db1.pool_recycle = 3600 | |||
sqlalchemy.db1.convert_unicode = true | |||
; the number of connections to keep open inside the connection pool. | |||
; 0 indicates no limit | |||
Martin Bornhold
|
r971 | #sqlalchemy.db1.pool_size = 5 | |
r4823 | ; The number of connections to allow in connection pool "overflow", that is | ||
; connections that can be opened above and beyond the pool_size setting, | |||
; which defaults to five. | |||
Martin Bornhold
|
r971 | #sqlalchemy.db1.max_overflow = 10 | |
r4823 | ; Connection check ping, used to detect broken database connections | ||
; could be enabled to better handle cases if MySQL has gone away errors | |||
#sqlalchemy.db1.ping_connection = true | |||
Martin Bornhold
|
r971 | ||
r4823 | ; ########## | ||
; VCS CONFIG | |||
; ########## | |||
Martin Bornhold
|
r971 | vcs.server.enable = true | |
vcs.server = localhost:9901 | |||
r4823 | ; Web server connectivity protocol, responsible for web based VCS operations | ||
; Available protocols are: | |||
; `http` - use http-rpc backend (default) | |||
Martin Bornhold
|
r973 | vcs.server.protocol = http | |
Martin Bornhold
|
r971 | ||
r4823 | ; Push/Pull operations protocol, available options are: | ||
; `http` - use http-rpc backend (default) | |||
Martin Bornhold
|
r973 | vcs.scm_app_implementation = http | |
Martin Bornhold
|
r971 | ||
r4823 | ; Push/Pull operations hooks protocol, available options are: | ||
; `http` - use http-rpc backend (default) | |||
Martin Bornhold
|
r973 | vcs.hooks.protocol = http | |
r4823 | |||
; Host on which this instance is listening for hooks. If vcsserver is in other location | |||
; this should be adjusted. | |||
r2833 | vcs.hooks.host = 127.0.0.1 | ||
Martin Bornhold
|
r971 | ||
r4823 | ; Start VCSServer with this instance as a subprocess, useful for development | ||
Martin Bornhold
|
r976 | vcs.start_server = false | |
Martin Bornhold
|
r971 | ||
r4823 | ; List of enabled VCS backends, available options are: | ||
; `hg` - mercurial | |||
; `git` - git | |||
; `svn` - subversion | |||
Martin Bornhold
|
r971 | vcs.backends = hg, git, svn | |
r4823 | ; Wait this number of seconds before killing connection to the vcsserver | ||
Martin Bornhold
|
r971 | vcs.connection_timeout = 3600 | |
r4823 | ; Compatibility version when creating SVN repositories. Defaults to newest version when commented out. | ||
; Set a numeric version for your current SVN e.g 1.8, or 1.12 | |||
; Legacy available options are: pre-1.4-compatible, pre-1.5-compatible, pre-1.6-compatible, pre-1.8-compatible, pre-1.9-compatible | |||
#vcs.svn.compatible_version = 1.8 | |||
Martin Bornhold
|
r971 | ||
r4823 | ; Cache flag to cache vcsserver remote calls locally | ||
; It uses cache_region `cache_repo` | |||
vcs.methods.cache = false | |||
; #################################################### | |||
; Subversion proxy support (mod_dav_svn) | |||
; Maps RhodeCode repo groups into SVN paths for Apache | |||
; #################################################### | |||
; Enable or disable the config file generation. | |||
Martin Bornhold
|
r971 | svn.proxy.generate_config = false | |
r4823 | |||
; Generate config file with `SVNListParentPath` set to `On`. | |||
Martin Bornhold
|
r971 | svn.proxy.list_parent_path = true | |
r4823 | |||
; Set location and file name of generated config file. | |||
Martin Bornhold
|
r971 | svn.proxy.config_file_path = %(here)s/mod_dav_svn.conf | |
r4823 | |||
; alternative mod_dav config template. This needs to be a valid mako template | |||
; Example template can be found in the source code: | |||
; rhodecode/apps/svn_support/templates/mod-dav-svn.conf.mako | |||
#svn.proxy.config_template = ~/.rccontrol/enterprise-1/custom_svn_conf.mako | |||
; Used as a prefix to the `Location` block in the generated config file. | |||
; In most cases it should be set to `/`. | |||
Martin Bornhold
|
r971 | svn.proxy.location_root = / | |
r4823 | |||
; Command to reload the mod dav svn configuration on change. | |||
; Example: `/etc/init.d/apache2 reload` or /home/USER/apache_reload.sh | |||
; Make sure user who runs RhodeCode process is allowed to reload Apache | |||
r1951 | #svn.proxy.reload_cmd = /etc/init.d/apache2 reload | ||
r4823 | |||
; If the timeout expires before the reload command finishes, the command will | |||
; be killed. Setting it to zero means no timeout. Defaults to 10 seconds. | |||
r1951 | #svn.proxy.reload_timeout = 10 | ||
r4823 | ; #################### | ||
; SSH Support Settings | |||
; #################### | |||
r2043 | |||
r4823 | ; Defines if a custom authorized_keys file should be created and written on | ||
; any change user ssh keys. Setting this to false also disables possibility | |||
; of adding SSH keys by users from web interface. Super admins can still | |||
; manage SSH Keys. | |||
r2047 | ssh.generate_authorized_keyfile = true | ||
r2043 | |||
r4823 | ; Options for ssh, default is `no-pty,no-port-forwarding,no-X11-forwarding,no-agent-forwarding` | ||
r2043 | # ssh.authorized_keys_ssh_opts = | ||
r4823 | ; Path to the authorized_keys file where the generate entries are placed. | ||
; It is possible to have multiple key files specified in `sshd_config` e.g. | |||
; AuthorizedKeysFile %h/.ssh/authorized_keys %h/.ssh/authorized_keys_rhodecode | |||
r2047 | ssh.authorized_keys_file_path = %(here)s/rc/authorized_keys_rhodecode | ||
r2043 | |||
r4823 | ; Command to execute the SSH wrapper. The binary is available in the | ||
; RhodeCode installation directory. | |||
; e.g ~/.rccontrol/community-1/profile/bin/rc-ssh-wrapper | |||
r2119 | ssh.wrapper_cmd = ~/.rccontrol/community-1/rc-ssh-wrapper | ||
r2043 | |||
r4823 | ; Allow shell when executing the ssh-wrapper command | ||
r2043 | ssh.wrapper_cmd_allow_shell = false | ||
r4823 | ; Enables logging, and detailed output send back to the client during SSH | ||
; operations. Useful for debugging, shouldn't be used in production. | |||
r2043 | ssh.enable_debug_logging = false | ||
r4823 | ; Paths to binary executable, by default they are the names, but we can | ||
; override them if we want to use a custom one | |||
r2043 | ssh.executable.hg = ~/.rccontrol/vcsserver-1/profile/bin/hg | ||
ssh.executable.git = ~/.rccontrol/vcsserver-1/profile/bin/git | |||
ssh.executable.svn = ~/.rccontrol/vcsserver-1/profile/bin/svnserve | |||
r4823 | ; Enables SSH key generator web interface. Disabling this still allows users | ||
; to add their own keys. | |||
r3478 | ssh.enable_ui_key_generator = true | ||
r4823 | ; Statsd client config, this is used to send metrics to statsd | ||
; We recommend setting statsd_exported and scrape them using Promethues | |||
#statsd.enabled = false | |||
#statsd.statsd_host = 0.0.0.0 | |||
#statsd.statsd_port = 8125 | |||
#statsd.statsd_prefix = | |||
#statsd.statsd_ipv6 = false | |||
r2043 | |||
r4823 | |||
; configure logging automatically at server startup set to false | |||
; to use the below custom logging config. | |||
logging.autoconfigure = false | |||
; specify your own custom logging config file to configure logging | |||
#logging.logging_conf_file = /path/to/custom_logging.ini | |||
; Dummy marker to add new entries after. | |||
; Add any custom entries below. Please don't remove this marker. | |||
r1951 | custom.conf = 1 | ||
Martin Bornhold
|
r971 | ||
r4823 | ; ##################### | ||
; LOGGING CONFIGURATION | |||
; ##################### | |||
Martin Bornhold
|
r971 | [loggers] | |
r2319 | keys = root, sqlalchemy, beaker, rhodecode, ssh_wrapper | ||
Martin Bornhold
|
r971 | ||
[handlers] | |||
keys = console, console_sql | |||
[formatters] | |||
keys = generic, color_formatter, color_formatter_sql | |||
r4823 | ; ####### | ||
; LOGGERS | |||
; ####### | |||
Martin Bornhold
|
r971 | [logger_root] | |
level = NOTSET | |||
handlers = console | |||
[logger_routes] | |||
level = DEBUG | |||
handlers = | |||
qualname = routes.middleware | |||
## "level = DEBUG" logs the route matched and routing variables. | |||
propagate = 1 | |||
r4823 | [logger_sqlalchemy] | ||
level = INFO | |||
handlers = console_sql | |||
qualname = sqlalchemy.engine | |||
propagate = 0 | |||
Martin Bornhold
|
r971 | [logger_beaker] | |
level = DEBUG | |||
handlers = | |||
qualname = beaker.container | |||
propagate = 1 | |||
[logger_rhodecode] | |||
level = DEBUG | |||
handlers = | |||
qualname = rhodecode | |||
propagate = 1 | |||
r2043 | [logger_ssh_wrapper] | ||
level = DEBUG | |||
handlers = | |||
qualname = ssh_wrapper | |||
propagate = 1 | |||
r4823 | [logger_celery] | ||
level = DEBUG | |||
handlers = | |||
qualname = celery | |||
r2043 | |||
r4823 | |||
; ######## | |||
; HANDLERS | |||
; ######## | |||
Martin Bornhold
|
r971 | ||
[handler_console] | |||
class = StreamHandler | |||
r4823 | args = (sys.stderr, ) | ||
Martin Bornhold
|
r971 | level = DEBUG | |
formatter = generic | |||
r4823 | ; To enable JSON formatted logs replace generic with json | ||
; This allows sending properly formatted logs to grafana loki or elasticsearch | |||
#formatter = json | |||
Martin Bornhold
|
r971 | ||
[handler_console_sql] | |||
r4823 | ; "level = DEBUG" logs SQL queries and results. | ||
; "level = INFO" logs SQL queries. | |||
; "level = WARN" logs neither. (Recommended for production systems.) | |||
Martin Bornhold
|
r971 | class = StreamHandler | |
r4823 | args = (sys.stderr, ) | ||
Martin Bornhold
|
r971 | level = WARN | |
formatter = generic | |||
r4823 | ; ########## | ||
; FORMATTERS | |||
; ########## | |||
Martin Bornhold
|
r971 | ||
[formatter_generic] | |||
r1409 | class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter | ||
r4823 | format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s | ||
Martin Bornhold
|
r971 | datefmt = %Y-%m-%d %H:%M:%S | |
[formatter_color_formatter] | |||
class = rhodecode.lib.logging_formatter.ColorFormatter | |||
r4823 | format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s | ||
Martin Bornhold
|
r971 | datefmt = %Y-%m-%d %H:%M:%S | |
[formatter_color_formatter_sql] | |||
class = rhodecode.lib.logging_formatter.ColorFormatterSql | |||
r4823 | format = %(asctime)s.%(msecs)03d [%(process)d] %(levelname)-5.5s [%(name)s] %(message)s | ||
Martin Bornhold
|
r971 | datefmt = %Y-%m-%d %H:%M:%S | |
r4823 | |||
[formatter_json] | |||
format = %(message)s | |||
class = rhodecode.lib._vendor.jsonlogger.JsonFormatter |