exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

auditor.conf (950B)


      1 # This file is in the public domain.
      2 #
      3 [auditor]
      4 # Which database backend do we use for the auditor?
      5 DB = postgres
      6 
      7 # Option specifying which amount is considered 'tiny'
      8 # and thus doesn't need to be wire-transferred.
      9 #TINY_AMOUNT = KUDOS:0.01
     10 
     11 # Where do we store the auditor's private key?
     12 AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}offline-keys/auditor.priv
     13 
     14 # What is the public key of this auditor? Used for processes that
     15 # verify auditor's signatures but have no access to the private key.
     16 # PUBLIC_KEY = VALUE
     17 
     18 # What is the Web site of the auditor (i.e. to file complaints about
     19 # a misbehaving exchange)?
     20 BASE_URL = http://localhost:8083/
     21 
     22 
     23 # Network configuration for the normal API/service HTTP server
     24 # serve via tcp socket (on PORT)
     25 SERVE = tcp
     26 
     27 # Unix domain socket to listen on,
     28 # only effective with "SERVE = unix"
     29 UNIXPATH = ${TALER_RUNTIME_DIR}httpd/auditor-http.sock
     30 UNIXPATH_MODE = 660
     31 
     32 # HTTP port the auditor listens to
     33 PORT = 8083