From fca6b3a85f7343d6f4c48b380e7c5e5f3e50a82c Mon Sep 17 00:00:00 2001 From: MS Date: Fri, 9 Oct 2020 15:41:58 +0200 Subject: README. Show more configuration options. --- README.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50f953c..953ec69 100644 --- 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 -> ``` +```
Step 3: Configure the config: @@ -74,3 +75,37 @@ To apply changes, use ## Running the program To start the server, use the following command:
> ```$ 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 + +> ``` +
+ +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 +> ``` -- cgit v1.2.3