From ac3b663729ba492b02a7a8816792bd2a35b163f6 Mon Sep 17 00:00:00 2001 From: MS Date: Fri, 9 Oct 2020 14:06:52 +0200 Subject: drafting README --- README-draft | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 README-draft diff --git a/README-draft b/README-draft new file mode 100644 index 0000000..e3d7a95 --- /dev/null +++ b/README-draft @@ -0,0 +1,46 @@ +Configuring the Blog +==================== + +To serve the blog directly via HTTP: +------------------------------------ + +[frontends] +backend_apikey = "ApiKey Sandbox" +backend = https://backend.test.taler.net/ + +[taler] +currency = TESTKUDOS + +[blog] +http_port = 8080 +serve = http + + +To serve the blog via 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 = XYZ + +To serve the blog via 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