summaryrefslogtreecommitdiff
path: root/pages/docs/platform/tutorials/configure-provider.md
diff options
context:
space:
mode:
authorMicah <micah@riseup.net>2015-04-07 14:05:13 +0000
committerMicah <micah@riseup.net>2015-04-07 14:05:13 +0000
commita60e644b75f870bcf615d3f63df7fea5bde05dd4 (patch)
treea87aa1faf14bce9dce6de53e8a93416e7199d438 /pages/docs/platform/tutorials/configure-provider.md
parent5fc5c7c406c28aa77651a604d9cb2541de9fd1c0 (diff)
parent8be8be3648244779d632d0190e103e77396da661 (diff)
Merge branch 'update_platform_docs' into 'master'
Update platform docs See merge request !1
Diffstat (limited to 'pages/docs/platform/tutorials/configure-provider.md')
-rw-r--r--pages/docs/platform/tutorials/configure-provider.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/pages/docs/platform/tutorials/configure-provider.md b/pages/docs/platform/tutorials/configure-provider.md
new file mode 100644
index 0000000..969d541
--- /dev/null
+++ b/pages/docs/platform/tutorials/configure-provider.md
@@ -0,0 +1,31 @@
+@title = 'Configure provider tutorial'
+@nav_title = 'Configure Provider'
+@summary = 'Explore how to configure your provider after the initial setup'
+
+
+Edit provider.json configuration
+--------------------------------------
+
+There are a few required settings in provider.json. At a minimum, you must have:
+
+ {
+ "domain": "example.org",
+ "name": "Example",
+ "contacts": {
+ "default": "email1@example.org"
+ }
+ }
+
+For a full list of possible settings, you can use `leap inspect` to see how provider.json is evaluated after including the inherited defaults:
+
+ $ leap inspect provider.json
+
+
+Examine Certs
+=============
+
+To see details about the keys and certs that the prior two commands created, you can use `leap inspect` like so:
+
+ $ leap inspect files/ca/ca.crt
+
+NOTE: the files `files/ca/*.key` are extremely sensitive and must be carefully protected. The other key files are much less sensitive and can simply be regenerated if needed.