anastasis

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

test_reducer.conf (5884B)


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