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.