From bbd5c2723b816de24ccce4e067d2eceeeb7ce258 Mon Sep 17 00:00:00 2001 From: Riyaz Faizullabhoy Date: Thu, 12 Jan 2017 18:11:48 -0800 Subject: [PATCH] Fix root_ca, json structure (#1079) Signed-off-by: Riyaz Faizullabhoy --- notary/reference/client-config.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/notary/reference/client-config.md b/notary/reference/client-config.md index 471f202401..5e3947ce0f 100644 --- a/notary/reference/client-config.md +++ b/notary/reference/client-config.md @@ -25,10 +25,10 @@ JSON keys to learn more about the configuration section corresponding to that ke "trust_dir" : "~/.docker/trust", "remote_server": { "url": "https://my-notary-server.my-private-registry.com", - "root-ca": "./fixtures/root-ca.crt", + "root_ca": "./fixtures/root-ca.crt", "tls_client_cert": "./fixtures/secure.example.com.crt", "tls_client_key": "./fixtures/secure.example.com.crt" - } + }, "trust_pinning": { "certs": { "docker.com/notary": ["49cf5c6404a35fa41d5a5aa2ce539dfee0d7a2176d0da488914a38603b1f4292"] @@ -58,7 +58,7 @@ Remote server example: ```json "remote_server": { "url": "https://my-notary-server.my-private-registry.com", - "root-ca": "./fixtures/root-ca.crt", + "root_ca": "./fixtures/root-ca.crt", "tls_client_cert": "./fixtures/secure.example.com.crt", "tls_client_key": "./fixtures/secure.example.com.crt" } @@ -78,7 +78,7 @@ Remote server example: `-s` or `--server`. - root-ca + root_ca no

The path to the file containing the root CA with which to verify the TLS certificate of the Notary server, for example if it is self-signed.