commit e326c548de3472ec49f9239e02d44b943ebe90b2 parent db9a06b1b59cc677eec56dff1f59bbfd60041fa5 Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 7 Apr 2016 13:15:28 +0200 add config file Diffstat:
| A | src/backend/merchant.conf | | | 46 | ++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 46 insertions(+), 0 deletions(-)
diff --git a/src/backend/merchant.conf b/src/backend/merchant.conf @@ -0,0 +1,46 @@ +# This file is in the public domain. + +# These are default/sample settings for a merchant backend. + + +# General settings for the backend. +[merchant] +# Which HTTP port does the backend listen on? +PORT = 9966 + +# Where does the backend store the merchant's private key? +KEYFILE = merchant.priv + +# Which database backend do we use? +DB = postgres + +# Which wireformat does this merchant use? (test/sepa/etc.) +# WIREFORMAT = "test" +# Must match the specification given in [merchant-wireformat] + + +[exchange-taler] +# FIXME: should use URI, need https! Avoid PORT (other than as part of URI)! +# FIXME: is this used? +HOSTNAME = exchange.demo.taler.net +PORT = 80 +PUBKEY = Q1WVGRGC1F4W7RYC6M23AEGFEXQEHQ730K3GG0B67VPHQSRR75H0 + + +# Configuration for postgres database. +[merchantdb-postgres] +CONFIG = postgres:///talermerchant + + +# Configuration of our bank account details +[merchant-wireformat] +# The values in this section must match the "WIREFORMAT" given in [merchant]: +# * for SEPA: +# IBAN = DE67830654080004822650 +# NAME = GNUNET E.V +# BIC = GENODEF1SRL +# +# * for TEST: +# ACCOUNT_NUMBER = 123456 +# BANK_URI = http:// +#