2016-10-06 15:17:10 +02:00
|
|
|
# This file is in the public domain.
|
|
|
|
#
|
|
|
|
[auditor]
|
2019-10-08 18:49:25 +02:00
|
|
|
# Which database backend do we use for the auditor?
|
2016-10-06 15:17:10 +02:00
|
|
|
DB = postgres
|
2016-10-06 16:38:42 +02:00
|
|
|
|
2019-08-24 22:49:35 +02:00
|
|
|
# Option specifying which amount is considered 'tiny'
|
|
|
|
# and thus doesn't need to be wire-transferred.
|
|
|
|
#TINY_AMOUNT = KUDOS:0.01
|
|
|
|
|
2016-10-06 16:38:42 +02:00
|
|
|
# Where do we store the auditor's private key?
|
|
|
|
AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
|
|
|
|
|
2020-12-17 13:04:37 +01:00
|
|
|
# What is the public key of this auditor? Used for processes that
|
|
|
|
# verify auditor's signatures but have no access to the private key.
|
|
|
|
# PUBLIC_KEY = VALUE
|
|
|
|
|
2016-10-06 16:38:42 +02:00
|
|
|
# What is the Web site of the auditor (i.e. to file complaints about
|
|
|
|
# a misbehaving exchange)?
|
|
|
|
# AUDITOR_URL = https://auditor.taler.net/
|
2018-11-04 10:48:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Network configuration for the normal API/service HTTP server
|
|
|
|
# serve via tcp socket (on PORT)
|
|
|
|
SERVE = tcp
|
|
|
|
|
|
|
|
# Unix domain socket to listen on,
|
|
|
|
# only effective with "SERVE = unix"
|
|
|
|
UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
|
|
|
|
UNIXPATH_MODE = 660
|
|
|
|
|
|
|
|
# HTTP port the auditor listens to
|
2019-10-08 18:49:25 +02:00
|
|
|
PORT = 8083
|