From a1bbd00c987042cee5cc8bd3aae8453f419ccf3f Mon Sep 17 00:00:00 2001 From: kballou Date: Tue, 2 Aug 2016 11:00:41 -0600 Subject: Update paths of SSL certificate and key Switch to using [lego][1] instead of the official letsencrypt Python project for managing renewals. I find the `lego` utility to be more suitable to the way I want to configure hosts. [1]: https://github.com/xenolf/lego --- sites/blog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/blog b/sites/blog index 4489676..a6ea85d 100644 --- a/sites/blog +++ b/sites/blog @@ -5,8 +5,8 @@ server { server { listen 443 ssl; - ssl_certificate /etc/nginx/ssl/kennyballou.com/fullchain.pem; - ssl_certificate_key /etc/nginx/ssl/kennyballou.com/privkey.pem; + ssl_certificate /etc/nginx/ssl/kennyballou.com.crt; + ssl_certificate_key /etc/nginx/ssl/kennyballou.com.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; -- cgit v1.2.1