summaryrefslogtreecommitdiff
path: root/README-draft
diff options
context:
space:
mode:
Diffstat (limited to 'README-draft')
-rw-r--r--README-draft46
1 files changed, 46 insertions, 0 deletions
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