From c0b16fbb459319e6bace6b3d6cc754cae217b39c Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 12 Oct 2019 19:13:36 +0200 Subject: [PATCH] Begin documenation for configuration --- lektor/content/configure/contents.lr | 46 ++++++++++++++++++++++++++++ lektor/content/contents.lr | 1 + 2 files changed, 47 insertions(+) create mode 100644 lektor/content/configure/contents.lr diff --git a/lektor/content/configure/contents.lr b/lektor/content/configure/contents.lr new file mode 100644 index 0000000..d06e7de --- /dev/null +++ b/lektor/content/configure/contents.lr @@ -0,0 +1,46 @@ +title: How to configure ucloud +--- +body: + +**THIS SITE IS UNDER CONSTRUCTION** + +![under construction](/underconstruction.jpg) + +## Introduction + +In ucloud **etcd** is the main storage backend. All ucloud components +need to be able to access etcd.! + +## Base configuration + +The main configuration is **/etc/ucloud/ucloud.json**. + +``` +{ + "etcd": { + ... + } +} +``` + +* The etcd + object contains the host, port and other configurations. Lookup + the [python-etcd3 + documentation](https://python-etcd3.readthedocs.io/en/latest/usage.html) + for details. + +## etcd based configuration REFERENCE + +### ucloud-core + +Contains: + +* OTP_SERVER=https://the-otp-server/ungleichotp/ +* OTP_AUTH_NAME=xxxxxxxx +* OTP_AUTH_SEED=xxxxxxxx +* OTP_AUTH_REALM=xxxxxxxx + + +### /ucloud-pay/stripe-private-key + +Contains the private key for communication with stripe. diff --git a/lektor/content/contents.lr b/lektor/content/contents.lr index 22a27a7..5ed8c71 100644 --- a/lektor/content/contents.lr +++ b/lektor/content/contents.lr @@ -21,3 +21,4 @@ Checkout how the [development of ucloud started](https://redmine.ungleich.ch/iss ## Documentation that we are working on right now * [How to install ucloud](/install) +* [How to configure ucloud](/configure)