From 4676a89963847686bfabd056f061192baa9ea2da Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 16 Feb 2016 14:55:26 +0000 Subject: [PATCH] Note that you may need curl --insecure when fetching root CA certificates --- docs/content/faq.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/content/faq.md b/docs/content/faq.md index 428ceccb1..2a8310e12 100644 --- a/docs/content/faq.md +++ b/docs/content/faq.md @@ -123,3 +123,9 @@ mkdir -p /etc/ssl/certs/ curl -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt ntpclient -s -h pool.ntp.org ``` + +Note that you may need to add the `--insecure` option to the `curl` command line if it doesn't work without. + +``` +curl --insecure -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt +```