aboutsummaryrefslogtreecommitdiff
path: root/test.ini
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-03-07 05:15:33 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-03-07 05:15:33 +0200
commit0c669d069aff8e1d1c51aef5d0b71afda7445182 (patch)
tree0eb7e67a75fecb6587e0afc92aeddc5482b19741 /test.ini
parent769ccd24d9c88f847a66ae0f7d66b332d5257348 (diff)
updated test.ini to latest ini format
--HG-- branch : beta
Diffstat (limited to 'test.ini')
-rw-r--r--test.ini71
1 files changed, 66 insertions, 5 deletions
diff --git a/test.ini b/test.ini
index d17b4fe3..8f85d748 100644
--- a/test.ini
+++ b/test.ini
@@ -17,6 +17,7 @@ pdebug = false
#error_email_from = paste_error@localhost
#app_email_from = rhodecode-noreply@localhost
#error_message =
+#email_prefix = [RhodeCode]
#smtp_server = mail.server.com
#smtp_username =
@@ -24,6 +25,8 @@ pdebug = false
#smtp_port =
#smtp_use_tls = false
#smtp_use_ssl = true
+# Specify available auth parameters here (e.g. LOGIN PLAIN CRAM-MD5, etc.)
+#smtp_auth =
[server:main]
##nr of threads to spawn
@@ -53,6 +56,42 @@ commit_parse_limit = 25
use_gravatar = true
container_auth_enabled = false
proxypass_auth_enabled = false
+
+
+## overwrite schema of clone url
+## available vars:
+## scheme - http/https
+## user - current user
+## pass - password
+## netloc - network location
+## path - usually repo_name
+
+#clone_uri = {scheme}://{user}{pass}{netloc}{path}
+
+## issue tracking mapping for commits messages
+## comment out issue_pat, issue_server, issue_prefix to enable
+
+## pattern to get the issues from commit messages
+## default one used here is #<numbers> with a regex passive group for `#`
+## {id} will be all groups matched from this pattern
+
+issue_pat = (?:\s*#)(\d+)
+
+## server url to the issue, each {id} will be replaced with match
+## fetched from the regex and {repo} is replaced with repository name
+
+issue_server_link = https://myissueserver.com/{repo}/issue/{id}
+
+## prefix to add to link to indicate it's an url
+## #314 will be replaced by <issue_prefix><id>
+
+issue_prefix = #
+
+## 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
+instance_id =
####################################
### CELERY CONFIG ####
@@ -86,6 +125,7 @@ celery.always.eager = false
####################################
beaker.cache.data_dir=/tmp/data/cache/data
beaker.cache.lock_dir=/tmp/data/cache/lock
+
beaker.cache.regions=super_short_term,short_term,long_term,sql_cache_short,sql_cache_med,sql_cache_long
beaker.cache.super_short_term.type=memory
@@ -118,12 +158,27 @@ beaker.cache.sql_cache_long.key_length = 256
## Type of storage used for the session, current types are
## dbm, file, memcached, database, and memory.
## The storage uses the Container API
-##that is also used by the cache system.
-beaker.session.type = file
+## that is also used by the cache system.
+
+## db session example
+
+#beaker.session.type = ext:database
+#beaker.session.sa.url = postgresql://postgres:qwe@localhost/rhodecode
+#beaker.session.table_name = db_session
+## encrypted cookie session, good for many instances
+#beaker.session.type = cookie
+
+beaker.session.type = file
beaker.session.key = rhodecode
-beaker.session.secret = g654dcno0-9873jhgfreyu
+# secure cookie requires AES python libraries
+#beaker.session.encrypt_key = g654dcno0-9873jhgfreyu
+#beaker.session.validate_key = 9712sds2212c--zxc123
beaker.session.timeout = 36000
+beaker.session.httponly = true
+
+## uncomment for https secure cookie
+beaker.session.secure = false
##auto save the session to not to use .save()
beaker.session.auto = False
@@ -131,7 +186,7 @@ beaker.session.auto = False
##true exire at browser close
#beaker.session.cookie_expires = 3600
-
+
################################################################################
## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
@@ -159,7 +214,7 @@ sqlalchemy.convert_unicode = true
### LOGGING CONFIGURATION ####
################################
[loggers]
-keys = root, routes, rhodecode, sqlalchemy, beaker, templates
+keys = root, routes, rhodecode, sqlalchemy, beaker, templates, whoosh_indexer
[handlers]
keys = console
@@ -205,6 +260,12 @@ handlers = console
qualname = sqlalchemy.engine
propagate = 0
+[logger_whoosh_indexer]
+level = DEBUG
+handlers =
+qualname = whoosh_indexer
+propagate = 1
+
##############
## HANDLERS ##
##############