taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

libeufin-bank.conf.j2 (946B)


      1 [libeufin-bank]
      2 CURRENCY={{ regional_currency_currency }}
      3 NAME="{{ regional_currency_bank_name }}"
      4 BASE_URL={{ regional_currency_protocol }}://bank.{{ regional_currency_domain }}/
      5 WIRE_TYPE=x-taler-bank
      6 X_TALER_BANK_PAYTO_HOSTNAME=bank.{{ regional_currency_domain }}
      7 SUGGESTED_WITHDRAWAL_EXCHANGE={{ regional_currency_exchange_base_url }}
      8 SERVE=tcp
      9 BIND_TO=127.0.0.1
     10 PORT={{ regional_currency_bank_port }}
     11 PWD_AUTH_COMPAT=no
     12 {% if regional_currency_enable_conversion %}
     13 ALLOW_CONVERSION=yes
     14 FIAT_CURRENCY={{ regional_currency_fiat_currency }}
     15 ALLOW_EDIT_CASHOUT_PAYTO_URI=yes
     16 {% endif %}
     17 {% if regional_currency_testing_deployment %}
     18 ALLOW_REGISTRATION=yes
     19 ALLOW_ACCOUNT_DELETION=yes
     20 ALLOW_EDIT_NAME=yes
     21 DEFAULT_DEBT_LIMIT={{ regional_currency_currency }}:100
     22 {% endif %}
     23 {% if regional_currency_enable_telesign %}
     24 TAN_SMS=libeufin-tan-sms.sh
     25 TAN_SMS_ENV={{ {'TELESIGN_AUTH_TOKEN': regional_currency_telesign_auth_token} | to_json }}
     26 {% endif %}