Prepare docker setup for fulltext search

This commit is contained in:
Eike Kettner
2020-06-28 02:12:57 +02:00
parent df73bc6285
commit d3b3c6289b
5 changed files with 58 additions and 28 deletions

View File

@ -3,6 +3,21 @@ docspell.server {
bind {
address = "0.0.0.0"
}
integration-endpoint {
enabled = true
http-header {
enabled = true
header-value = ${?DOCSPELL_HEADER_VALUE}
}
}
# Configuration of the full-text search engine.
full-text-search {
enabled = true
recreate-key = ""
solr = {
url = "http://solr:8983/solr/docspell"
}
}
backend {
jdbc {
url = "jdbc:postgresql://db:5432/dbname"
@ -22,6 +37,12 @@ docspell.joex {
user = "dbuser"
password = "dbpass"
}
full-text-search {
enabled = true
solr = {
url = "http://solr:8983/solr/docspell"
}
}
scheduler {
pool-size = 1
}