anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

test_reducer_free.conf (5299B)


      1 # This file is in the public domain.
      2 [PATHS]
      3 TALER_HOME = ${PWD}/test_reducer_home/
      4 TALER_DATA_HOME = $TALER_HOME/.local/share/taler/
      5 TALER_CONFIG_HOME = $TALER_HOME/.config/taler/
      6 TALER_CACHE_HOME = $TALER_HOME/.cache/taler/
      7 TALER_RUNTIME_DIR = ${TMPDIR:-${TMP:-/tmp}}/${USER:-}/taler-system-runtime/
      8 
      9 [anastasis]
     10 CURRENCY = TESTKUDOS
     11 DB = postgres
     12 ANNUAL_FEE = TESTKUDOS:0
     13 TRUTH_UPLOAD_FEE = TESTKUDOS:0.0
     14 UPLOAD_LIMIT_MB = 1
     15 ANNUAL_POLICY_UPLOAD_LIMIT = 128
     16 INSURANCE = TESTKUDOS:0
     17 
     18 [anastasis-merchant-backend]
     19 PAYMENT_BACKEND_URL = http://localhost:9966/
     20 
     21 [authorization-question]
     22 CURRENCY = TESTKUDOS
     23 COST = TESTKUDOS:0.0
     24 
     25 
     26 [exchange]
     27 CURRENCY = TESTKUDOS
     28 CURRENCY_ROUND_UNIT = TESTKUDOS:0.01
     29 MAX_KEYS_CACHING = forever
     30 DB = postgres
     31 MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
     32 SERVE = tcp
     33 UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
     34 UNIXPATH_MODE = 660
     35 PORT = 8081
     36 BASE_URL = http://localhost:8081/
     37 SIGNKEY_DURATION = 2 weeks
     38 SIGNKEY_LEGAL_DURATION = 2 years
     39 LEGAL_DURATION = 2 years
     40 LOOKAHEAD_SIGN = 3 weeks 1 day
     41 LOOKAHEAD_PROVIDE = 2 weeks 1 day
     42 KEYDIR = ${TALER_DATA_HOME}/exchange/live-keys/
     43 REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
     44 TERMS_ETAG = 0
     45 PRIVACY_ETAG = 0
     46 
     47 [merchant]
     48 SERVE = tcp
     49 PORT = 9966
     50 UNIXPATH = ${TALER_RUNTIME_DIR}/merchant.http
     51 UNIXPATH_MODE = 660
     52 DEFAULT_WIRE_FEE_AMORTIZATION = 1
     53 DB = postgres
     54 WIREFORMAT = default
     55 # Set very low, so we can be sure that the database generated
     56 # will contain wire transfers "ready" for the aggregator.
     57 WIRE_TRANSFER_DELAY = 1 minute
     58 DEFAULT_PAY_DEADLINE = 1 day
     59 DEFAULT_MAX_DEPOSIT_FEE = TESTKUDOS:0.1
     60 KEYFILE = ${TALER_DATA_HOME}/merchant/merchant.priv
     61 DEFAULT_MAX_WIRE_FEE = TESTKUDOS:0.10
     62 
     63 # Ensure that merchant reports EVERY deposit confirmation to auditor
     64 FORCE_AUDIT = YES
     65 
     66 [auditor]
     67 DB = postgres
     68 AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
     69 SERVE = tcp
     70 UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
     71 UNIXPATH_MODE = 660
     72 PORT = 8083
     73 AUDITOR_URL = http://localhost:8083/
     74 TINY_AMOUNT = TESTKUDOS:0.01
     75 AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
     76 BASE_URL = "http://localhost:8083/"
     77 
     78 [bank]
     79 DATABASE = postgres:///taler-auditor-basedb
     80 MAX_DEBT = TESTKUDOS:50.0
     81 MAX_DEBT_BANK = TESTKUDOS:100000.0
     82 HTTP_PORT = 8082
     83 SUGGESTED_EXCHANGE = http://localhost:8081/
     84 SUGGESTED_EXCHANGE_PAYTO = payto://x-taler-bank/localhost/2?receiver-name=Exchange
     85 ALLOW_REGISTRATIONS = YES
     86 SERVE = http
     87 
     88 [exchangedb]
     89 IDLE_RESERVE_EXPIRATION_TIME = 4 weeks
     90 LEGAL_RESERVE_EXPIRATION_TIME = 7 years
     91 
     92 [exchange-account-1]
     93 PAYTO_URI = payto://x-taler-bank/localhost/Exchange?receiver-name=Exchange
     94 enable_debit = yes
     95 enable_credit = yes
     96 
     97 [exchange-accountcredentials-1]
     98 WIRE_GATEWAY_URL = "http://localhost:8082/accounts/Exchange/taler-wire-gateway/"
     99 WIRE_GATEWAY_AUTH_METHOD = basic
    100 USERNAME = Exchange
    101 PASSWORD = x
    102 
    103 [merchant-exchange-default]
    104 EXCHANGE_BASE_URL = http://localhost:8081/
    105 CURRENCY = TESTKUDOS
    106 
    107 [payments-generator]
    108 currency = TESTKUDOS
    109 instance = default
    110 bank = http://localhost:8082/
    111 merchant = http://localhost:9966/
    112 exchange_admin = http://localhost:18080/
    113 exchange-admin = http://localhost:18080/
    114 exchange = http://localhost:8081/
    115 
    116 [coin_kudos_ct_1]
    117 value = TESTKUDOS:0.01
    118 duration_withdraw = 7 days
    119 duration_spend = 2 years
    120 duration_legal = 3 years
    121 fee_withdraw = TESTKUDOS:0.01
    122 fee_deposit = TESTKUDOS:0.01
    123 fee_refresh = TESTKUDOS:0.01
    124 fee_refund = TESTKUDOS:0.01
    125 rsa_keysize = 1024
    126 CIPHER = RSA
    127 
    128 [coin_kudos_ct_10]
    129 value = TESTKUDOS:0.10
    130 duration_withdraw = 7 days
    131 duration_spend = 2 years
    132 duration_legal = 3 years
    133 fee_withdraw = TESTKUDOS:0.01
    134 fee_deposit = TESTKUDOS:0.01
    135 fee_refresh = TESTKUDOS:0.03
    136 fee_refund = TESTKUDOS:0.01
    137 rsa_keysize = 1024
    138 CIPHER = RSA
    139 
    140 [coin_kudos_1]
    141 value = TESTKUDOS:1
    142 duration_withdraw = 7 days
    143 duration_spend = 2 years
    144 duration_legal = 3 years
    145 fee_withdraw = TESTKUDOS:0.02
    146 fee_deposit = TESTKUDOS:0.02
    147 fee_refresh = TESTKUDOS:0.03
    148 fee_refund = TESTKUDOS:0.01
    149 rsa_keysize = 1024
    150 CIPHER = RSA
    151 
    152 [coin_kudos_2]
    153 value = TESTKUDOS:2
    154 duration_withdraw = 7 days
    155 duration_spend = 2 years
    156 duration_legal = 3 years
    157 fee_withdraw = TESTKUDOS:0.03
    158 fee_deposit = TESTKUDOS:0.03
    159 fee_refresh = TESTKUDOS:0.04
    160 fee_refund = TESTKUDOS:0.02
    161 rsa_keysize = 1024
    162 CIPHER = RSA
    163 
    164 [coin_kudos_4]
    165 value = TESTKUDOS:4
    166 duration_withdraw = 7 days
    167 duration_spend = 2 years
    168 duration_legal = 3 years
    169 fee_withdraw = TESTKUDOS:0.03
    170 fee_deposit = TESTKUDOS:0.03
    171 fee_refresh = TESTKUDOS:0.04
    172 fee_refund = TESTKUDOS:0.02
    173 rsa_keysize = 1024
    174 CIPHER = RSA
    175 
    176 [coin_kudos_5]
    177 value = TESTKUDOS:5
    178 duration_withdraw = 7 days
    179 duration_spend = 2 years
    180 duration_legal = 3 years
    181 fee_withdraw = TESTKUDOS:0.01
    182 fee_deposit = TESTKUDOS:0.01
    183 fee_refresh = TESTKUDOS:0.03
    184 fee_refund = TESTKUDOS:0.01
    185 rsa_keysize = 1024
    186 CIPHER = RSA
    187 
    188 [coin_kudos_8]
    189 value = TESTKUDOS:8
    190 duration_withdraw = 7 days
    191 duration_spend = 2 years
    192 duration_legal = 3 years
    193 fee_withdraw = TESTKUDOS:0.05
    194 fee_deposit = TESTKUDOS:0.02
    195 fee_refresh = TESTKUDOS:0.03
    196 fee_refund = TESTKUDOS:0.04
    197 rsa_keysize = 1024
    198 CIPHER = RSA
    199 
    200 [coin_kudos_10]
    201 value = TESTKUDOS:10
    202 duration_withdraw = 7 days
    203 duration_spend = 2 years
    204 duration_legal = 3 years
    205 fee_withdraw = TESTKUDOS:0.01
    206 fee_deposit = TESTKUDOS:0.01
    207 fee_refresh = TESTKUDOS:0.03
    208 fee_refund = TESTKUDOS:0.01
    209 rsa_keysize = 1024
    210 CIPHER = RSA