# HG changeset patch # User RhodeCode Admin # Date 2024-05-20 08:01:35 # Node ID 27e8d8c50bcbe8e9c5e8402aa3592fdcb843127a # Parent 9679a5bf65188aa039dc8016eb7069c7d8d71be7 configs: update .ini files diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -304,7 +304,7 @@ file_store.enabled = true ; Storage backend, available options are: local file_store.backend = local -; path to store the uploaded binaries +; path to store the uploaded binaries and artifacts file_store.storage_path = /var/opt/rhodecode_data/file_store ; Uncomment and set this path to control settings for archive download cache. @@ -320,7 +320,7 @@ archive_cache.store_dir = /var/opt/rhode archive_cache.cache_size_gb = 10 ; By default cache uses sharding technique, this specifies how many shards are there -archive_cache.cache_shards = 10 +archive_cache.cache_shards = 4 ; ############# ; CELERY CONFIG @@ -591,6 +591,7 @@ vcs.scm_app_implementation = http ; Push/Pull operations hooks protocol, available options are: ; `http` - use http-rpc backend (default) +; `celery` - use celery based hooks vcs.hooks.protocol = http ; Host on which this instance is listening for hooks. vcsserver will call this host to pull/push hooks so it should be @@ -677,7 +678,8 @@ ssh.authorized_keys_file_path = /etc/rho ; Command to execute the SSH wrapper. The binary is available in the ; RhodeCode installation directory. -; e.g /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper +; legacy: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper +; new rewrite: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2 ssh.wrapper_cmd = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper ; Allow shell when executing the ssh-wrapper command diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -542,6 +542,7 @@ vcs.scm_app_implementation = http ; Push/Pull operations hooks protocol, available options are: ; `http` - use http-rpc backend (default) +; `celery` - use celery based hooks vcs.hooks.protocol = http ; Host on which this instance is listening for hooks. vcsserver will call this host to pull/push hooks so it should be @@ -628,7 +629,8 @@ ssh.authorized_keys_file_path = /etc/rho ; Command to execute the SSH wrapper. The binary is available in the ; RhodeCode installation directory. -; e.g /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper +; legacy: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper +; new rewrite: /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper-v2 ssh.wrapper_cmd = /usr/local/bin/rhodecode_bin/bin/rc-ssh-wrapper ; Allow shell when executing the ssh-wrapper command