This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/docspell/configmap-docspellconf.yaml

64 lines
1.4 KiB
YAML
Raw Normal View History

2021-01-10 20:10:35 +00:00
apiVersion: v1
kind: ConfigMap
metadata:
name: docspell-config
namespace: docspell
data:
docspell.conf: |
docspell.server {
base-url = "https://"${BASE_URL}
internal-url = "http://restserver:7880"
2021-01-10 20:10:35 +00:00
bind {
address = "0.0.0.0"
}
integration-endpoint {
enabled = true
http-header {
enabled = true
header-value = ${?DOCSPELL_HEADER_VALUE}
}
}
2021-01-12 19:33:25 +00:00
admin-endpoint {
secret = ${ADMIN_ENDPOINT_SECRET}
}
2021-01-10 20:10:35 +00:00
# Configuration of the full-text search engine.
full-text-search {
enabled = true
solr = {
url = "http://solrtcp:8983/solr/docspell"
}
}
backend {
jdbc {
url = "jdbc:"${DB_TYPE}"://"${DB_HOST}":"${DB_PORT}"/"${DB_NAME}
user = ${DB_USER}
password = ${DB_PASS}
}
2021-01-11 20:28:00 +00:00
signup {
mode = "closed"
}
2021-01-10 20:10:35 +00:00
}
}
docspell.joex {
base-url = "http://joex:7878"
bind {
address = "0.0.0.0"
}
jdbc {
url = "jdbc:"${DB_TYPE}"://"${DB_HOST}":"${DB_PORT}"/"${DB_NAME}
user = ${DB_USER}
password = ${DB_PASS}
}
full-text-search {
enabled = true
solr = {
url = "http://solrtcp:8983/solr/docspell"
}
}
2023-01-28 18:25:28 +00:00
convert.html-converter = "weasyprint"
2021-01-10 20:10:35 +00:00
scheduler {
pool-size = 1
}
}