summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Brandily <zzelle@gmail.com>2016-10-18 22:20:00 +0200
committerMonty Taylor <mordred@inaugust.com>2016-10-20 16:17:21 -0500
commit422ad9ccdb8b08a223af78a1d1f48df703dd1a9d (patch)
treee921010db6806926f4a6e5ef451b1f6ca6df349c
parent47068d0abbb1018e238213af30cf7840bb2104d9 (diff)
downloados-client-config-422ad9ccdb8b08a223af78a1d1f48df703dd1a9d.tar.gz
Clarify how to set SSL settings
This change adds an example in order to clarif how to SSL settings in configuration files. Change-Id: Id047f21d0a51752f46b16e3f4efbfec62cfbd5fb
-rw-r--r--README.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index a47e98b..f3d41c5 100644
--- a/README.rst
+++ b/README.rst
@@ -185,6 +185,19 @@ Client certs are also configurable. `cert` will be the client cert file
location. In case the cert key is not included within the client cert file,
its file location needs to be set via `key`.
+.. code-block:: yaml
+
+ # clouds.yaml
+ clouds:
+ secure:
+ auth: ...
+ key: /home/myhome/client-cert.key
+ cert: /home/myhome/client-cert.crt
+ cacert: /home/myhome/ca.crt
+ insecure:
+ auth: ...
+ verify: False
+
Cache Settings
--------------