From 3389ca8fa650f8103e979f3d60237743fa04c717 Mon Sep 17 00:00:00 2001 From: Luke Carpenter Date: Thu, 9 Jul 2015 23:40:32 +0100 Subject: [PATCH] Remove mention of a third-party service Signed-off-by: Luke Carpenter --- docs/deploying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploying.md b/docs/deploying.md index 09adac6d7..3b136694f 100644 --- a/docs/deploying.md +++ b/docs/deploying.md @@ -89,7 +89,7 @@ docker run -d -p 5000:5000 \ registry:2 ``` -If the certificate issuer supplies you with an 'intermediate' certificate, such as Gandi, you need to combine your certificate with the intermediates to form a 'certificate bundle'. You can do this using the cat command: ```cat server.crt GandiStandardSSLCA2.pem > server.with-intermediate.crt```. You can then configure the registry to use your certificate bundle with the ```REGISTRY_HTTP_TLS_CERTIFICATE``` environment variable. +If the certificate issuer supplies you with an 'intermediate' certificate, you need to combine your certificate with the intermediates to form a 'certificate bundle'. You can do this using the cat command: ```cat server.crt intermediate-certificates.pem > server.with-intermediate.crt```. You can then configure the registry to use your certificate bundle with the ```REGISTRY_HTTP_TLS_CERTIFICATE``` environment variable. **Pros:**