diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-26 17:05:19 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-26 17:05:19 +0200 |
commit | 23c36cb44bbec66d2173ed49a6edb3fb45347001 (patch) | |
tree | c6dc215ebf5a0b5726bf0abbb5a87f7681eb2bc5 /debian/etc | |
parent | 3cdefdd11a431089e92d0f0599c4bcda108a4f6f (diff) |
remove (hopefully) obsolete option, was moved to exchange-offline
Diffstat (limited to 'debian/etc')
-rw-r--r-- | debian/etc/taler-secmod.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/debian/etc/taler-secmod.conf b/debian/etc/taler-secmod.conf new file mode 100644 index 000000000..8b3bb34d9 --- /dev/null +++ b/debian/etc/taler-secmod.conf @@ -0,0 +1,38 @@ +[PATHS] + +# Move runtime data "tmp" directory to /var/lib/taler-exchange/ +# to possibly provide additional protection from unwarranted access. +TALER_RUNTIME_DIR = /var/lib/taler-exchange/tmp/ + +[taler] +# Here you need to set the currency of your exchange: +# CURRENCY = KUDOS + + +# You must specify the various denominations to be offered by your exchange +# in sections called "coin_". +# What follows is an example. + +# [coin_FOO] +## Actual value of the coin +#VALUE = KUDOS:1 + +## How long will one key be used for withdrawals? +#DURATION_WITHDRAW = 7 days + +## How long do users have to spend their coins? +#DURATION_SPEND = 2 years + +## How long does the exchange keep the proofs around for legal disputes? +#DURATION_LEGAL = 6 years + +## Fees charged. Note that for the lowest denomination, the +## fee must precisely be the lowest denomination, or zero. +#FEE_WITHDRAW = KUDOS:0 +#FEE_DEPOSIT = KUDOS:0 +#FEE_REFRESH = KUDOS:0 +#FEE_REFUND = KUDOS:0 + +## How long should the RSA keys be. Do not change unless you really know +## what you are doing (consult your local cryptographer first!). +#RSA_KEYSIZE = 2048 |