diff options
Diffstat (limited to 'debian/etc/taler/conf.d/exchange-business.conf')
-rw-r--r-- | debian/etc/taler/conf.d/exchange-business.conf | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/debian/etc/taler/conf.d/exchange-business.conf b/debian/etc/taler/conf.d/exchange-business.conf new file mode 100644 index 000000000..ecd010da1 --- /dev/null +++ b/debian/etc/taler/conf.d/exchange-business.conf | |||
@@ -0,0 +1,46 @@ | |||
1 | # Configuration for business-level aspects of the exchange. | ||
2 | |||
3 | [exchange] | ||
4 | |||
5 | # Here you MUST add the master public key of the offline system | ||
6 | # which you can get using `taler-exchange-offline setup`. | ||
7 | # This is just an example, your key will be different! | ||
8 | # MASTER_PUBLIC_KEY = YE6Q6TR1EDB7FD0S68TGDZGF1P0GHJD2S0XVV8R2S62MYJ6HJ4ZG | ||
9 | MASTER_PUBLIC_KEY = | ||
10 | |||
11 | # For your terms of service and privacy policy, you should specify | ||
12 | # an Etag that must be updated whenever there are significant | ||
13 | # changes to either document. The format is up to you, what matters | ||
14 | # is that the value is updated and never re-used. See the HTTP | ||
15 | # specification on Etags. | ||
16 | # TERMS_ETAG = | ||
17 | # PRIVACY_ETAG = | ||
18 | |||
19 | |||
20 | # You must specify the various denominations to be offered by your exchange | ||
21 | # in sections called "coin_". | ||
22 | # What follows is an example. | ||
23 | |||
24 | # [coin_FOO] | ||
25 | ## Actual value of the coin | ||
26 | #VALUE = KUDOS:1 | ||
27 | |||
28 | ## How long will one key be used for withdrawals? | ||
29 | #DURATION_WITHDRAW = 7 days | ||
30 | |||
31 | ## How long do users have to spend their coins? | ||
32 | #DURATION_SPEND = 2 years | ||
33 | |||
34 | ## How long does the exchange keep the proofs around for legal disputes? | ||
35 | #DURATION_LEGAL = 6 years | ||
36 | |||
37 | ## Fees charged. Note that for the lowest denomination, the | ||
38 | ## fee must precisely be the lowest denomination, or zero. | ||
39 | #FEE_WITHDRAW = KUDOS:0 | ||
40 | #FEE_DEPOSIT = KUDOS:0 | ||
41 | #FEE_REFRESH = KUDOS:0 | ||
42 | #FEE_REFUND = KUDOS:0 | ||
43 | |||
44 | ## How long should the RSA keys be. Do not change unless you really know | ||
45 | ## what you are doing (consult your local cryptographer first!). | ||
46 | #RSA_KEYSIZE = 2048 | ||