From 693dcf3755563b5cb357847dabe80aa159a87293 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Fri, 10 Mar 2023 18:53:46 -0400 Subject: [PATCH] add cert --- conduit.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conduit.conf b/conduit.conf index 9180d65..194c66b 100644 --- a/conduit.conf +++ b/conduit.conf @@ -14,4 +14,9 @@ server { proxy_set_header Host $http_host; proxy_buffering off; } + + ssl_certificate /etc/letsencrypt/live/matrix.shoebottom.ca/fullchain.pem; # EDIT THIS + ssl_certificate_key /etc/letsencrypt/live/matrix.shoebottom.ca/privkey.pem; # EDIT THIS + ssl_trusted_certificate /etc/letsencrypt/live/matrix.shoebottom.ca/chain.pem; # EDIT THIS + include /etc/letsencrypt/options-ssl-nginx.conf; }