2020-03-30 22:45:43 +00:00
|
|
|
docspell.server {
|
|
|
|
base-url = "http://localhost:7880"
|
|
|
|
bind {
|
|
|
|
address = "0.0.0.0"
|
|
|
|
}
|
2020-06-28 00:12:57 +00:00
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 22:45:43 +00:00
|
|
|
backend {
|
|
|
|
jdbc {
|
|
|
|
url = "jdbc:postgresql://db:5432/dbname"
|
|
|
|
user = "dbuser"
|
|
|
|
password = "dbpass"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
docspell.joex {
|
|
|
|
base-url = "http://joex:7878"
|
|
|
|
bind {
|
|
|
|
address = "0.0.0.0"
|
|
|
|
}
|
|
|
|
jdbc {
|
|
|
|
url = "jdbc:postgresql://db:5432/dbname"
|
|
|
|
user = "dbuser"
|
|
|
|
password = "dbpass"
|
|
|
|
}
|
2020-06-28 00:12:57 +00:00
|
|
|
full-text-search {
|
|
|
|
enabled = true
|
|
|
|
solr = {
|
|
|
|
url = "http://solr:8983/solr/docspell"
|
|
|
|
}
|
|
|
|
}
|
2020-03-30 22:45:43 +00:00
|
|
|
scheduler {
|
|
|
|
pool-size = 1
|
|
|
|
}
|
|
|
|
}
|