taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

commit fca6b3a85f7343d6f4c48b380e7c5e5f3e50a82c
parent 044a31b4630bcf21ddb48cc45417aed28b3b7ee3
Author: MS <ms@taler.net>
Date:   Fri,  9 Oct 2020 15:41:58 +0200

README.

Show more configuration options.

Diffstat:
MREADME.md | 37++++++++++++++++++++++++++++++++++++-
1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -46,6 +46,7 @@ Step 1: Open the config: Step 2: Adding the required keys: > Copy & Paste the following into the file: + > ``` > [frontends] > backend_apikey = "ApiKey Sandbox" @@ -57,7 +58,7 @@ Step 2: Adding the required keys: > [blog] > http_port = 8080 > serve = http -> ``` +``` <br> Step 3: Configure the config: @@ -74,3 +75,37 @@ To apply changes, use ## Running the program To start the server, use the following command:<br> > ```$ taler-merchant-demos blog``` + +## More configuration options. +This makes the blog speak UWSGI over TCP: +> ``` +> [frontends] +> backend_apikey = "ApiKey Sandbox" +> backend = https://backend.test.taler.net/ +> +> [taler] +> currency = TESTKUDOS +> +> [blog] +> serve = uwsgi +> uwsgi_serve = tcp +> uwsgi_port = XZY + +> ``` +<br> + +This makes the blog speak UWSGI over unix domain socket: +> ``` +> [frontends] +> backend_apikey = "ApiKey Sandbox" +> backend = https://backend.test.taler.net/ +> +> [taler] +> currency = TESTKUDOS +> +> [blog] +> serve = uwsgi +> uwsgi_serve = unix +> uwsgi_unixpath = "/tmp/blog.uwsgi" +> uwsgi_unixpath_mode = XZY +> ```