From 8294ed7af3c49252f1b3e8699332f7811f4e4d77 Mon Sep 17 00:00:00 2001 From: Daniel Roesler Date: Thu, 5 Nov 2015 07:36:46 -0800 Subject: fixed #8, added note about adding the intermediate letsencrypt cert to nginx config --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index b22e7ae..a4e86d1 100644 --- a/README.md +++ b/README.md @@ -271,12 +271,18 @@ with your private key to run an https server. You just security transfer (using include them in the https settings in your web server's configuration. Here's an example on how to configure an nginx server: +``` +#NOTE: For nginx, you need to append the Let's Encrypt intermediate cert to your cert +user@hostname:~$ wget https://letsencrypt.org/certs/lets-encrypt-x1-cross-signed.pem +user@hostname:~$ cat signed.crt lets-encrypt-x1-cross-signed.pem > chained.pem +``` + ```nginx server { listen 443; server_name letsencrypt.daylightpirates.org; ssl on; - ssl_certificate signed.crt; + ssl_certificate chained.pem; ssl_certificate_key domain.key; ssl_session_timeout 5m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; -- cgit v1.2.3