summaryrefslogtreecommitdiffstats
path: root/distrib
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2012-03-25 13:15:06 -0400
committerJames Moger <james.moger@gitblit.com>2012-03-25 13:15:06 -0400
commit7db0929ad58804ebc235730b9cfc83dc38835eb9 (patch)
tree409079124310facf7e726824581766be3886ebc4 /distrib
parent462488624022a1cff16bebed6b3bb08b17ca80ab (diff)
downloadgitblit-7db0929ad58804ebc235730b9cfc83dc38835eb9.tar.gz
gitblit-7db0929ad58804ebc235730b9cfc83dc38835eb9.zip
Added web.allowLuceneIndexing to enable/disable Lucene integration
Diffstat (limited to 'distrib')
-rw-r--r--distrib/gitblit.properties9
1 files changed, 9 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties
index ad822809..2846496e 100644
--- a/distrib/gitblit.properties
+++ b/distrib/gitblit.properties
@@ -184,6 +184,15 @@ web.allowGravatar = true
# SINCE 0.5.0
web.allowZipDownloads = true
+# Allow optional Lucene integration. Lucene indexing is an opt-in feature.
+# A repository may specify branches to index with Lucene instead of using Git
+# commit traversal. There are scenarios where you may want to completely disable
+# Lucene indexing despite a repository specifying indexed branches. One such
+# scenario is on a resource-constrained federated Gitblit mirror.
+#
+# SINCE 0.9.0
+web.allowLuceneIndexing = true
+
# Use Clippy (Flash solution) to provide a copy-to-clipboard button.
# If false, a button with a more primitive JavaScript-based prompt box will
# offer a 3-step (click, ctrl+c, enter) copy-to-clipboard alternative.