Skip to content

Commit

Permalink
Merge pull request #2566 from array-in-a-matrix/search
Browse files Browse the repository at this point in the history
add full text search for dendrite
  • Loading branch information
spantaleev authored Mar 14, 2023
2 parents cf7f970 + 4f0f6bd commit c747891
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions roles/custom/matrix-dendrite/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,6 @@ matrix_dendrite_userapi_auto_join_rooms: []
# statistics reporting configuration. These statistics contain the server
# name, number of active users and some information on your deployment config.
matrix_dendrite_report_stats: false

# Configuration for the full-text search engine.
matrix_dendrite_syncapi_search_enabled: false
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ sync_api:
# Configuration for the full-text search engine.
search:
# Whether or not search is enabled.
enabled: false
enabled: {{ matrix_dendrite_syncapi_search_enabled|to_json }}
# The path where the search index will be created in.
index_path: "/matrix-media-store-parent/searchindex"
# The language most likely to be used on the server - used when indexing, to
Expand Down

0 comments on commit c747891

Please sign in to comment.