anastasis

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

test_reducer.conf (5936B)


      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 CURRENCIES = TESTKUDOS
     12 DB = postgres
     13 ANNUAL_FEE = TESTKUDOS:4.99
     14 TRUTH_UPLOAD_FEE = TESTKUDOS:0.01
     15 UPLOAD_LIMIT_MB = 1
     16 ANNUAL_POLICY_UPLOAD_LIMIT = 128
     17 INSURANCE = TESTKUDOS:1.0
     18 
     19 [anastasis-merchant-backend]
     20 PAYMENT_BACKEND_URL = http://localhost:9966/
     21 
     22 [authorization-question]
     23 CURRENCY = TESTKUDOS
     24 COST = TESTKUDOS:0.0
     25 
     26 [exchange]
     27 CURRENCY = TESTKUDOS
     28 CURRENCY_ROUND_UNIT = TESTKUDOS:0.01
     29 TINY_AMOUNT = TESTKUDOS:0.01
     30 MASTER_PUBLIC_KEY = 3NX5DJDBD8XVGZYHV3PBF8C3Z4GK48XD59YY5GF3CZE8AJM04WSG
     31 AML_THRESHOLD = TESTKUDOS:1000000
     32 MAX_KEYS_CACHING = forever
     33 DB = postgres
     34 SERVE = tcp
     35 UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
     36 UNIXPATH_MODE = 660
     37 PORT = 8081
     38 BASE_URL = http://localhost:8081/
     39 SIGNKEY_DURATION = 2 weeks
     40 SIGNKEY_LEGAL_DURATION = 2 years
     41 LEGAL_DURATION = 2 years
     42 LOOKAHEAD_SIGN = 3 weeks 1 day
     43 LOOKAHEAD_PROVIDE = 2 weeks 1 day
     44 TERMS_ETAG = 0
     45 PRIVACY_ETAG = 0
     46 STEFAN_ABS = "TESTKUDOS:5"
     47 
     48 # Account of the EXCHANGE
     49 [exchange-account-1]
     50 # What is the exchange's bank account (with the "Taler Bank" demo system)?
     51 PAYTO_URI = payto://iban/SANDBOXX/DE989651?receiver-name=Exchange+Company
     52 ENABLE_DEBIT = YES
     53 ENABLE_CREDIT = YES
     54 
     55 [exchange-accountcredentials-1]
     56 WIRE_GATEWAY_URL = http://localhost:18082/accounts/exchange/taler-wire-gateway/
     57 WIRE_GATEWAY_AUTH_METHOD = basic
     58 USERNAME = exchange
     59 PASSWORD = x
     60 
     61 
     62 [exchange-account-2]
     63 PAYTO_URI = "payto://x-taler-bank/localhost/exchange?receiver-name=exchange"
     64 ENABLE_DEBIT = YES
     65 ENABLE_CREDIT = YES
     66 
     67 [exchange-accountcredentials-2]
     68 WIRE_GATEWAY_AUTH_METHOD = none
     69 WIRE_GATEWAY_URL = "http://localhost:18082/accounts/exchange/taler-wire-gateway/"
     70 
     71 [merchant]
     72 SERVE = tcp
     73 PORT = 9966
     74 UNIXPATH = ${TALER_RUNTIME_DIR}/merchant.http
     75 UNIXPATH_MODE = 660
     76 DB = postgres
     77 KEYFILE = ${TALER_DATA_HOME}/merchant/merchant.priv
     78 
     79 # Ensure that merchant reports EVERY deposit confirmation to auditor
     80 FORCE_AUDIT = YES
     81 
     82 [auditor]
     83 DB = postgres
     84 AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
     85 SERVE = tcp
     86 UNIXPATH = ${TALER_RUNTIME_DIR}/exchange.http
     87 UNIXPATH_MODE = 660
     88 PORT = 8083
     89 AUDITOR_URL = http://localhost:8083/
     90 TINY_AMOUNT = TESTKUDOS:0.01
     91 AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
     92 BASE_URL = "http://localhost:8083/"
     93 
     94 [bank]
     95 DATABASE = postgres:///taler-auditor-basedb
     96 MAX_DEBT = TESTKUDOS:50.0
     97 MAX_DEBT_BANK = TESTKUDOS:100000.0
     98 HTTP_PORT = 18082
     99 SUGGESTED_EXCHANGE = http://localhost:8081/
    100 SUGGESTED_EXCHANGE_PAYTO = payto://x-taler-bank/localhost/2?receiver-name=Exchange
    101 ALLOW_REGISTRATIONS = YES
    102 SERVE = http
    103 
    104 [libeufin-bank]
    105 CURRENCY = TESTKUDOS
    106 WIRE_TYPE = iban
    107 IBAN_PAYTO_BIC = SANDBOXX
    108 DEFAULT_CUSTOMER_DEBT_LIMIT = TESTKUDOS:200
    109 DEFAULT_ADMIN_DEBT_LIMIT = TESTKUDOS:2000
    110 REGISTRATION_BONUS_ENABLED = yes
    111 REGISTRATION_BONUS = TESTKUDOS:100
    112 SUGGESTED_WITHDRAWAL_EXCHANGE = http://localhost:8081/
    113 SERVE = tcp
    114 PORT = 18082
    115 
    116 [exchangedb]
    117 IDLE_RESERVE_EXPIRATION_TIME = 4 weeks
    118 LEGAL_RESERVE_EXPIRATION_TIME = 7 years
    119 
    120 [auditordb-postgres]
    121 CONFIG = "postgres:///talercheck"
    122 
    123 [exchangedb-postgres]
    124 CONFIG = "postgres:///talercheck"
    125 
    126 [merchantdb-postgres]
    127 CONFIG = "postgres:///talercheck"
    128 
    129 [merchant-exchange-default]
    130 EXCHANGE_BASE_URL = http://localhost:8081/
    131 CURRENCY = TESTKUDOS
    132 MASTER_KEY = 3NX5DJDBD8XVGZYHV3PBF8C3Z4GK48XD59YY5GF3CZE8AJM04WSG
    133 
    134 [payments-generator]
    135 currency = TESTKUDOS
    136 instance = default
    137 bank = http://localhost:8082/
    138 merchant = http://localhost:9966/
    139 exchange_admin = http://localhost:18080/
    140 exchange-admin = http://localhost:18080/
    141 exchange = http://localhost:8081/
    142 
    143 [coin_kudos_ct_1]
    144 value = TESTKUDOS:0.01
    145 duration_withdraw = 7 days
    146 duration_spend = 2 years
    147 duration_legal = 3 years
    148 fee_withdraw = TESTKUDOS:0.01
    149 fee_deposit = TESTKUDOS:0.01
    150 fee_refresh = TESTKUDOS:0.01
    151 fee_refund = TESTKUDOS:0.01
    152 rsa_keysize = 1024
    153 CIPHER = RSA
    154 
    155 [coin_kudos_ct_10]
    156 value = TESTKUDOS:0.10
    157 duration_withdraw = 7 days
    158 duration_spend = 2 years
    159 duration_legal = 3 years
    160 fee_withdraw = TESTKUDOS:0.01
    161 fee_deposit = TESTKUDOS:0.01
    162 fee_refresh = TESTKUDOS:0.03
    163 fee_refund = TESTKUDOS:0.01
    164 rsa_keysize = 1024
    165 CIPHER = RSA
    166 
    167 [coin_kudos_1]
    168 value = TESTKUDOS:1
    169 duration_withdraw = 7 days
    170 duration_spend = 2 years
    171 duration_legal = 3 years
    172 fee_withdraw = TESTKUDOS:0.02
    173 fee_deposit = TESTKUDOS:0.02
    174 fee_refresh = TESTKUDOS:0.03
    175 fee_refund = TESTKUDOS:0.01
    176 rsa_keysize = 1024
    177 CIPHER = RSA
    178 
    179 [coin_kudos_2]
    180 value = TESTKUDOS:2
    181 duration_withdraw = 7 days
    182 duration_spend = 2 years
    183 duration_legal = 3 years
    184 fee_withdraw = TESTKUDOS:0.03
    185 fee_deposit = TESTKUDOS:0.03
    186 fee_refresh = TESTKUDOS:0.04
    187 fee_refund = TESTKUDOS:0.02
    188 rsa_keysize = 1024
    189 CIPHER = RSA
    190 
    191 [coin_kudos_4]
    192 value = TESTKUDOS:4
    193 duration_withdraw = 7 days
    194 duration_spend = 2 years
    195 duration_legal = 3 years
    196 fee_withdraw = TESTKUDOS:0.03
    197 fee_deposit = TESTKUDOS:0.03
    198 fee_refresh = TESTKUDOS:0.04
    199 fee_refund = TESTKUDOS:0.02
    200 rsa_keysize = 1024
    201 CIPHER = RSA
    202 
    203 [coin_kudos_5]
    204 value = TESTKUDOS:5
    205 duration_withdraw = 7 days
    206 duration_spend = 2 years
    207 duration_legal = 3 years
    208 fee_withdraw = TESTKUDOS:0.01
    209 fee_deposit = TESTKUDOS:0.01
    210 fee_refresh = TESTKUDOS:0.03
    211 fee_refund = TESTKUDOS:0.01
    212 rsa_keysize = 1024
    213 CIPHER = RSA
    214 
    215 [coin_kudos_8]
    216 value = TESTKUDOS:8
    217 duration_withdraw = 7 days
    218 duration_spend = 2 years
    219 duration_legal = 3 years
    220 fee_withdraw = TESTKUDOS:0.05
    221 fee_deposit = TESTKUDOS:0.02
    222 fee_refresh = TESTKUDOS:0.03
    223 fee_refund = TESTKUDOS:0.04
    224 rsa_keysize = 1024
    225 CIPHER = RSA
    226 
    227 [coin_kudos_10]
    228 value = TESTKUDOS:10
    229 duration_withdraw = 7 days
    230 duration_spend = 2 years
    231 duration_legal = 3 years
    232 fee_withdraw = TESTKUDOS:0.01
    233 fee_deposit = TESTKUDOS:0.01
    234 fee_refresh = TESTKUDOS:0.03
    235 fee_refund = TESTKUDOS:0.01
    236 rsa_keysize = 1024
    237 CIPHER = RSA