diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-27 17:10:47 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-27 17:10:47 +0100 |
commit | 34993717fd702db50a82858a3ad4b660f0c7feac (patch) | |
tree | ae6eb7421dd09040c6521494b90b385867fa17bd /dendrite-sample.monolith.yaml | |
parent | 87be32ca2671173a4287a938932e543410a32c3a (diff) |
Update search docs
Diffstat (limited to 'dendrite-sample.monolith.yaml')
-rw-r--r-- | dendrite-sample.monolith.yaml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dendrite-sample.monolith.yaml b/dendrite-sample.monolith.yaml index 3cad17da..e41e83d7 100644 --- a/dendrite-sample.monolith.yaml +++ b/dendrite-sample.monolith.yaml @@ -276,13 +276,17 @@ sync_api: # a reverse proxy server. # real_ip_header: X-Real-IP - # Configuration for the fulltext search + # Configuration for the full-text search engine. search: + # Whether or not search is enabled. enabled: false - # The path where the fulltext index will be created in. - index_path: "./fulltextindex" - # The language most likely to be used on the server - used when indexing, to ensure the returned results match the expectations. - # A full list of possible languages can be found at https://github.com/blevesearch/bleve/tree/master/analysis/lang + + # The path where the search index will be created in. + index_path: "./searchindex" + + # The language most likely to be used on the server - used when indexing, to + # ensure the returned results match expectations. A full list of possible languages + # can be found at https://github.com/blevesearch/bleve/tree/master/analysis/lang language: "en" # Configuration for the User API. |