summaryrefslogtreecommitdiff
path: root/taler-merchant-manual.rst
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-12-23 01:19:22 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-12-23 01:19:22 -0500
commitd0dd94532802ad5b8ab00d4c378fe64359f4e3a1 (patch)
tree3345217ace2771bb70ee3fd314349bb0a7cb735c /taler-merchant-manual.rst
parent09f63c870ae3cf22bb3946ad89944a3d96f65032 (diff)
downloaddocs-d0dd94532802ad5b8ab00d4c378fe64359f4e3a1.tar.gz
docs-d0dd94532802ad5b8ab00d4c378fe64359f4e3a1.tar.bz2
docs-d0dd94532802ad5b8ab00d4c378fe64359f4e3a1.zip
Use wget(1) in examples more
Diffstat (limited to 'taler-merchant-manual.rst')
-rw-r--r--taler-merchant-manual.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst
index faa9aa15..08663d50 100644
--- a/taler-merchant-manual.rst
+++ b/taler-merchant-manual.rst
@@ -830,7 +830,7 @@ If everything worked as expected, the command
.. code-block:: console
- $ curl http://localhost:8888/config
+ $ wget -O - http://localhost:8888/config
should return some basic configuration status data about the service.
@@ -853,7 +853,7 @@ Instance setup
First of all, we recommend the use of the single-page administration
application that is served by default at the base URL of the merchant backend.
You can use it to perform all steps described in this section (and more!),
-using a simple Web interface instead of the ``curl`` commands given below.
+using a simple Web interface instead of the ``wget`` commands given below.
The first step for using the backend involves the creation of a ``default``
instance. The ``default`` instance can also create / delete / configure other
@@ -1731,5 +1731,5 @@ request to the merchant, for example:
.. code-block:: console
- $ curl http://$(docker-machine ip)/
+ $ wget -O - http://$(docker-machine ip)/
# A greeting message should be returned by the merchant.