summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md37
1 files changed, 36 insertions, 1 deletions
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
-> ```
+```
<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
+> ```