commit ac3b663729ba492b02a7a8816792bd2a35b163f6 parent a3f0d4936a2778aaa139855f11b2f5a42c628023 Author: MS <ms@taler.net> Date: Fri, 9 Oct 2020 14:06:52 +0200 drafting README Diffstat:
| A | README-draft | | | 46 | ++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 46 insertions(+), 0 deletions(-)
diff --git a/README-draft 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