Search Module
Allows you to use a search which automatically index all pages and linked documents.
Elasticsearch
Elasticsearch Configuration
appsettings key: ConfinityElasticsearch The configuration has defaults and is optional.
| Configuration Key | Description | Default |
|---|---|---|
| CreateIndex | Whether the index should be created automatically or not. Set this to false if the index cannot easily be recreated because of your application logic. | true |
| InstanceKey | Which elasticsearch index to use. | default |
| Host | required URL to elasticsearch (ex: http://elasticsearch:9200) | |
| ProxyAddress | Proxy to use. If empty the system proxy will be use (or none if not available). | |
| ProxyUsername | Username for the proxy if required. | |
| ProxyPassword | Password for the proxy if required. | |
| DisableAutomaticProxyDetection | Prevent the use of the system configured proxy. |
Lucene
Lucene Configuration
appsettings key: ConfinityLucene The configuration has defaults and is optional.
| Configuration Key | Description | Default |
|---|---|---|
| CreateIndex | Whether the index should be created automatically or not. Set this to false if the index cannot easily be recreated because of your application logic. | true |
| StorePath | Set the path where lucene should store it's data. | ./cache/lucene |