mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
0114bb4d72
Fixes: #389
202 lines
7.0 KiB
Plaintext
202 lines
7.0 KiB
Plaintext
docspell.server {
|
|
|
|
# This is shown in the top right corner of the web application
|
|
app-name = "Docspell"
|
|
|
|
# This is the id of this node. If you run more than one server, you
|
|
# have to make sure to provide unique ids per node.
|
|
app-id = "rest1"
|
|
|
|
# This is the base URL this application is deployed to. This is used
|
|
# to create absolute URLs and to configure the cookie.
|
|
#
|
|
# If default is not changed, the HOST line of the login request is
|
|
# used instead or the value of the `X-Forwarded-For` header. If set
|
|
# to some other value, the request is not inspected.
|
|
base-url = "http://localhost:7880"
|
|
|
|
# Where the server binds to.
|
|
bind {
|
|
address = "localhost"
|
|
port = 7880
|
|
}
|
|
|
|
# This is a hard limit to restrict the size of a batch that is
|
|
# returned when searching for items. The user can set this limit
|
|
# within the client config, but it is restricted by the server to
|
|
# the number defined here. An admin might choose a lower number
|
|
# depending on the available resources.
|
|
max-item-page-size = 200
|
|
|
|
# The number of characters to return for each item notes when
|
|
# searching. Item notes may be very long, when returning them with
|
|
# all the results from a search, they add quite some data to return.
|
|
# In order to keep this low, a limit can be defined here.
|
|
max-note-length = 180
|
|
|
|
|
|
# This defines whether the classification form in the collective
|
|
# settings is displayed or not. If all joex instances have document
|
|
# classification disabled, it makes sense to hide its settings from
|
|
# users.
|
|
show-classification-settings = true
|
|
|
|
# Authentication.
|
|
auth {
|
|
|
|
# The secret for this server that is used to sign the authenicator
|
|
# tokens. If multiple servers are running, all must share the same
|
|
# secret. You can use base64 or hex strings (prefix with b64: and
|
|
# hex:, respectively).
|
|
server-secret = "hex:caffee"
|
|
|
|
# How long an authentication token is valid. The web application
|
|
# will get a new one periodically.
|
|
session-valid = "5 minutes"
|
|
}
|
|
|
|
# This endpoint allows to upload files to any collective. The
|
|
# intention is that local software integrates with docspell more
|
|
# easily. Therefore the endpoint is not protected by the usual
|
|
# means.
|
|
#
|
|
# For security reasons, this endpoint is disabled by default. If
|
|
# enabled, you can choose from some ways to protect it. It may be a
|
|
# good idea to further protect this endpoint using a firewall, such
|
|
# that outside traffic is not routed.
|
|
#
|
|
# NOTE: If all protection methods are disabled, the endpoint is not
|
|
# protected at all!
|
|
integration-endpoint {
|
|
enabled = false
|
|
|
|
# The priority to use when submitting files through this endpoint.
|
|
priority = "low"
|
|
|
|
# The name used for the item "source" property when uploaded
|
|
# through this endpoint.
|
|
source-name = "integration"
|
|
|
|
# IPv4 addresses to allow access. An empty list, if enabled,
|
|
# prohibits all requests. IP addresses may be specified as simple
|
|
# globs: a part marked as `*' matches any octet, like in
|
|
# `192.168.*.*`. The `127.0.0.1' (the default) matches the
|
|
# loopback address.
|
|
allowed-ips {
|
|
enabled = false
|
|
ips = [ "127.0.0.1" ]
|
|
}
|
|
|
|
# Requests are expected to use http basic auth when uploading
|
|
# files.
|
|
http-basic {
|
|
enabled = false
|
|
realm = "Docspell Integration"
|
|
user = "docspell-int"
|
|
password = "docspell-int"
|
|
}
|
|
|
|
# Requests are expected to supply some specific header when
|
|
# uploading files.
|
|
http-header {
|
|
enabled = false
|
|
header-name = "Docspell-Integration"
|
|
header-value = "some-secret"
|
|
}
|
|
}
|
|
|
|
# Configuration of the full-text search engine.
|
|
full-text-search {
|
|
# The full-text search feature can be disabled. It requires an
|
|
# additional index server which needs additional memory and disk
|
|
# space. It can be enabled later any time.
|
|
#
|
|
# Currently the SOLR search platform is supported.
|
|
enabled = false
|
|
|
|
# When re-creating the complete index via a REST call, this key
|
|
# is required. If left empty (the default), recreating the index
|
|
# is disabled.
|
|
#
|
|
# Example curl command:
|
|
# curl -XPOST http://localhost:7880/api/v1/open/fts/reIndexAll/test123
|
|
recreate-key = ""
|
|
|
|
# Configuration for the SOLR backend.
|
|
solr = {
|
|
# The URL to solr
|
|
url = "http://localhost:8983/solr/docspell"
|
|
# Used to tell solr when to commit the data
|
|
commit-within = 1000
|
|
# If true, logs request and response bodies
|
|
log-verbose = false
|
|
# The defType parameter to lucene that defines the parser to
|
|
# use. You might want to try "edismax" or look here:
|
|
# https://lucene.apache.org/solr/guide/8_4/query-syntax-and-parsing.html#query-syntax-and-parsing
|
|
def-type = "lucene"
|
|
# The default combiner for tokens. One of {AND, OR}.
|
|
q-op = "OR"
|
|
}
|
|
}
|
|
|
|
# Configuration for the backend.
|
|
backend {
|
|
# Enable or disable debugging for e-mail related functionality. This
|
|
# applies to both sending and receiving mails. For security reasons
|
|
# logging is not very extensive on authentication failures. Setting
|
|
# this to true, results in a lot of data printed to stdout.
|
|
mail-debug = false
|
|
|
|
# The database connection.
|
|
#
|
|
# By default a H2 file-based database is configured. You can
|
|
# provide a postgresql or mariadb connection here. When using H2
|
|
# use the PostgreSQL compatibility mode and AUTO_SERVER feature.
|
|
jdbc {
|
|
url = "jdbc:h2://"${java.io.tmpdir}"/docspell-demo.db;MODE=PostgreSQL;DATABASE_TO_LOWER=TRUE;AUTO_SERVER=TRUE"
|
|
user = "sa"
|
|
password = ""
|
|
}
|
|
|
|
# Configuration for registering new users.
|
|
signup {
|
|
|
|
# The mode defines if new users can signup or not. It can have
|
|
# three values:
|
|
#
|
|
# - open: every new user can sign up
|
|
# - invite: new users can sign up only if they provide a correct
|
|
# invitation key. Invitation keys can be generated by the
|
|
# server.
|
|
# - closed: signing up is disabled.
|
|
mode = "open"
|
|
|
|
# If mode == 'invite', a password must be provided to generate
|
|
# invitation keys. It must not be empty.
|
|
new-invite-password = ""
|
|
|
|
# If mode == 'invite', this is the period an invitation token is
|
|
# considered valid.
|
|
invite-time = "3 days"
|
|
}
|
|
|
|
files {
|
|
# Defines the chunk size (in bytes) used to store the files.
|
|
# This will affect the memory footprint when uploading and
|
|
# downloading files. At most this amount is loaded into RAM for
|
|
# down- and uploading.
|
|
#
|
|
# It also defines the chunk size used for the blobs inside the
|
|
# database.
|
|
chunk-size = 524288
|
|
|
|
# The file content types that are considered valid. Docspell
|
|
# will only pass these files to processing. The processing code
|
|
# itself has also checks for which files are supported and which
|
|
# not. This affects the uploading part and can be used to
|
|
# restrict file types that should be handed over to processing.
|
|
# By default all files are allowed.
|
|
valid-mime-types = [ ]
|
|
}
|
|
}
|
|
} |