summaryrefslogtreecommitdiff
path: root/libeufin/regional-automated-manual.rst
blob: f416d1b913eeae882bacf2a962913bd7833ab43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
..
  This file is part of GNU TALER.
  Copyright (C) 2014-2024 Taler Systems SA

  TALER is free software; you can redistribute it and/or modify it under the
  terms of the GNU Affero General Public License as published by the Free Software
  Foundation; either version 2.1, or (at your option) any later version.

  TALER is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more details.

  You should have received a copy of the GNU Affero General Public License along with
  TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>

  @author Florian Dold
  @author Marcello Stanisci
  @author Christian Grothoff


.. target audience: operator

Regional Currency Automated Setup Manual
########################################

This manual describes how to setup a regional currency using a script that largely automates the process. If you want to do a custom setup you can follow the :doc:`custom setup manual<regional-custom-manual>`.


.. contents:: Table of Contents
  :local:

.. include:: ../frags/regional-manual-architecture.rst

Guided Automated Setup
======================

Prerequisites
+++++++++++++

For this manual, we assume that the system is deployed on a contemporary
Debian GNU/Linux Bookworm or Ubuntu Mantic system using the binary packages provided.
Furthermore, you should run the process on a system with one or more globally
reachable IP address(es) *and* with various DNS names already pointing to
these IPs.

Preparing the required subdomain names
++++++++++++++++++++++++++++++++++++++

The GNU Taler program needs to have three subdomains pointing to your server IP address, in order to let NGINX to accommodate each component.
These are "bank", "exchange" and "backend", this said, you need to have a registered top level domain name,
where you can create type (A) entries, as subdomains pointing to your own server public IP address.
A very good advice when creating these subdomains, and if your domain panel lets you specify the TTL (time to live) figure, is
to specify a very low value (such as 300), so in case of future changes, its value (the IP address), will be propagated quickly.

Once you have added the three required subdomains in your domain control panel, you have to make sure as well, these subdomains have
propagated over the Internet correctly, and they are currently publicly available.

You can check this from your terminal very easily with the "ping" command, as this:

.. code-block:: console

  $ ping -c1 bank.$DOMAIN_NAME
  $ ping -c1 exchange.$DOMAIN_NAME
  $ ping -c1 backend.$DOMAIN_NAME

You can also use `this tool <https://toolbox.googleapps.com/apps/dig/>`_ for the same purpose, and to check the propagation status.

.. warning::
  Take into account some hosting providers providing virtualized servers (VPS or VDS) can enable by default the firewall program "UFW", blocking by default the port number 443. So you have to either disable this firewall program, or open to this 443 port number to allow https.

Now you are ready to go with the next step.

Obtaining the Scripts
+++++++++++++++++++++

First, download the deployment scripts via Git:

.. code-block:: console

  # apt update && apt install git
  $ git clone git://git.taler.net/deployment

Running the Guided Configuration
++++++++++++++++++++++++++++++++

Navigate into the *regional-currency/* directory and run *main.sh* as **root**:

.. code-block:: console

  $ cd deployment/regional-currency/
  # ./main.sh

The script will start by installing the required packages and then asking you fundamental questions about the desired setup, in particular:

#. Wether to encrypt, when stored on disk, sensible configurations such as the admin password.
#. The name of the regional currency. It must have 3 to 11 letters.
#. Whether to setup the regional currency to be backed by a fiat currency. You'll need a bank account at a fiat currency bank offering an online banking protocol supported by LibEuFin Nexus. If you answer ``y``, you will also need to provide the following information:

   #. The ISO code of the fiat currency. Use 'CHF' or 'EUR'.
   #. The IBAN of the fiat bank account.
   #. The BIC of the fiat bank account.
   #. The legal name of the fiat bank account.

#. The name of the regional currency bank. It will be shown to business users when they interact with the system.
#. The DNS domain name of your setup (i.e: domain.tld). The installer will create by itself all the needed subdomains for your domain name, as (``bank.$DOMAIN_NAME``, ``exchange.$DOMAIN_NAME`` and ``backend.$DOMAIN_NAME``). But, these subdomain names as explained before, must have been added beforehand to your DNS domain control panel, and they must be pointing to the IP address of the server on which you are running the installation (before you execute the installer).
#. Whether to use TLS or not. You should answer ``y`` in most cases.
#. Whether to setup SMS two-factor authentication using `Telesign <https://www.telesign.com>`_, multi-factor authentication is strongly recommended, especially when regional currency can be converted to fiat currency. This requires `a Customer ID and an API Key <https://developer.telesign.com/enterprise/docs/authentication#basic-authentication>`_. You should answer ``y`` in most cases.
#. The admin password for the bank. Be absolutely sure to enter a very, very long and high-entropy password, preferably using the autogenerated one.
#. Whether to generate terms of service (ToS) for the exchange from default templates.
#. Whether to generate a privacy policy for the exchange from default templates.

The information you entered as well as the generated bank admin password will
be stored in a file called ``config/user.conf``. If you run the script in
the future again (for example, to upgrade the installation), you will not be asked
these questions a second time.

After answering all of the questions, the actual installation will start. The
scripts will download and configure various packages, which may take some time.
Grab a coffee.

.. note::

   At this point, the setup is NOT connected to any fiat bank account! The next
   steps must always be done manually!

Running the script again from scratch
+++++++++++++++++++++++++++++++++++++

If for some reason your installation doesn't work because you have answered erroneously
some of the interactive questions, or you just want to reset the current installation and to re-deploy
the script again for having its latest changes, you will have to proceed as follows:

In brief, you need to wipe completely the "content" of the file config/user.conf, this doesn't mean
to remove the file itself, but only its content. Even though you can do this manually by editing the file manually
with your preferred text editor, you can also do this in one single command.

.. code-block:: console

  # rm config/user.conf

.. note::

  In future versions of the program when executed for the second time, the program itself will
  show an option to offer wiping the content of this config/user.conf file, automatically.

Multi-factor authentication
+++++++++++++++++++++++++++

The script allows you to configure multi-factor authentication via SMS using Telesign as a provider. You can also configure multi-factor authentication via email or use providers other than Telesign for SMS. You will need to configure these channels manually as described in :ref:`multi-factor authentication <libeufin-mfa>`.

If you choose not to back your regional currency with a fiat currency, you can stop here.

Web-based Configuration
+++++++++++++++++++++++

By default, the regional currency conversion rates are 1:1. You can change the conversion rates and the ``admin`` debt limit via the bank's web interface as the ``admin`` user.

Connecting to a Fiat Bank: the EBICS setup
++++++++++++++++++++++++++++++++++++++++++

To complete the conversion setup, you have to set up an EBICS subscriber using the fiat bank account you specified during the automated setup.

When you sign up for an EBICS-enabled bank account, the bank will provide you
with various credentials. Those must be provided in the
``/etc/libeufin/libeufin-nexus.conf`` configuration file.

.. note::
  As legacy transactions in that bank account would likely confuse the system, it is advisable to use a fresh bank account with an empty transaction history.
  If this is not possible, use the ``IGNORE_TRANSACTIONS_BEFORE`` configuration to ignore old transactions.

The following snippet shows the mandatory configuration values:

.. _core-config:

.. code-block:: ini

  [nexus-ebics]
  # Bank
  HOST_BASE_URL = https://ebics.postfinance.ch/ebics/ebics.aspx
  BANK_DIALECT = postfinance

  # EBICS IDs
  HOST_ID = PFEBICS
  USER_ID = PFC00563
  PARTNER_ID = PFC00563

.. warning::
  This combination of HOST_ID, USER_ID and PARTNER_ID must never be used by another instance of libeufin-nexus or by other EBICS clients, otherwise data will be lost.

Reuse existing client keys
^^^^^^^^^^^^^^^^^^^^^^^^^^

If you have client keys from a previous EBICS setup you can copy the JSON file to ``/var/lib/libeufin-nexus/client-ebics-keys.json``.

Make sure this file is accessible to the user running ``libeufin-nexus``, you should run:

.. code-block:: console

  $ chown libeufin-nexus:libeufin-nexus /var/lib/libeufin-nexus/client-ebics-keys.json

Create new client keys
^^^^^^^^^^^^^^^^^^^^^^

Run the following command to start the EBICS setup process:

.. code-block:: console

  $ sudo -u libeufin-nexus libeufin-nexus ebics-setup

If the previous command failed when running EBICS INI with an error code of
``EBICS_INVALID_USER_OR_USER_STATE``, you need to confirm your keys to your bank to
activate your account.

To that end, the previous run should have left a PDF document that you can
print, sign and send to the bank.  Look for the message that looks like ``PDF
file with keys created at '/tmp/libeufin-nexus-keys-$TIMESTAMP.pdf'``.

Once the bank has received and processed this document you can continue.

Get bank keys
^^^^^^^^^^^^^

Run the following command to finish the EBICS setup process:

.. code-block:: console

  $ sudo -u libeufin-nexus libeufin-nexus ebics-setup

The EBICS setup is finished once the bank keys have been accepted.


Configuring the Exchange for Conversion
+++++++++++++++++++++++++++++++++++++++

In our automated setup the second account is automatically set up correctly
without fees or special restrictions.  However, various additional
*restrictions* and *options* could be configured.  Details are explained in
the :ref:`regional conversion setup <regional-conversion-setup>` section for the
manual setup and in the the manpage of ``taler-exchange-offline``.


.. include:: ../frags/regional-system-on.rst
.. include:: ../frags/deploying-tos.rst
.. include:: ../frags/regional-manual-use.rst


Installing Updates
++++++++++++++++++

The standard procedure for installing updates is to:

* First, make a backup (!)
* Stop Taler services
* Install new version
* Upgrade databases
* Start Taler services

The "upgrade.sh" script in the "regional-currency/" folder of "deployment.git"
shows how to do the above steps *except* for the backup.  For the backup, all
critical bits of data will be in the Postgresql databases. Thus, we recommend
following the database manual on making backups.