diff options
author | Micah Anderson <micah@leap.se> | 2015-06-11 12:09:36 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2015-06-11 12:09:36 -0400 |
commit | eb4d0b2a81d5e83046d3cbf658804d9cd2f19921 (patch) | |
tree | a3293bd1ef94c2df67e6c16527ef110c8ced93a2 /doc/tutorials/configure-provider.md | |
parent | 0c12ab564590374c09ffe7a8049cab6d8c8b41fc (diff) | |
parent | d9146415db0e6b7dd0c945039c0a4ed4fd054a7d (diff) |
Merge tag '0.7.0' into develop
Releasing 0.7.0
Diffstat (limited to 'doc/tutorials/configure-provider.md')
-rw-r--r-- | doc/tutorials/configure-provider.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/tutorials/configure-provider.md b/doc/tutorials/configure-provider.md new file mode 100644 index 00000000..969d541b --- /dev/null +++ b/doc/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. |