summaryrefslogtreecommitdiff
path: root/src/auditor/auditor.conf
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-11-04 10:48:22 +0100
committerChristian Grothoff <christian@grothoff.org>2018-11-04 10:48:32 +0100
commitb39c3f9ca626cf8908f4f552d481dd3e9d162140 (patch)
tree857f95e44a75a19ebab90a98c4788d2511eac089 /src/auditor/auditor.conf
parentdce058af76abad983df4a671616fd76a11bd133f (diff)
downloadexchange-b39c3f9ca626cf8908f4f552d481dd3e9d162140.tar.gz
exchange-b39c3f9ca626cf8908f4f552d481dd3e9d162140.tar.bz2
exchange-b39c3f9ca626cf8908f4f552d481dd3e9d162140.zip
add missing default configs for auditor-httpd, make -u not mandatory as it is not needed for -r and check URL is well-formed if given; fix auditordb exchange insertion/removal logic
Diffstat (limited to 'src/auditor/auditor.conf')
-rw-r--r--src/auditor/auditor.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/auditor/auditor.conf b/src/auditor/auditor.conf
index 22395cc6e..c3b9a00c6 100644
--- a/src/auditor/auditor.conf
+++ b/src/auditor/auditor.conf
@@ -10,3 +10,16 @@ AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
# What is the Web site of the auditor (i.e. to file complaints about
# a misbehaving exchange)?
# AUDITOR_URL = https://auditor.taler.net/
+
+
+# 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
+PORT = 8082